package models type Maybe[T any] struct { Value T Err error } func (m Maybe[T]) Get() (T, error) { return m.Value, m.Err }