package domain import ( "context" "time" ) type User struct { ID string `bson:"_id"` Castle string Guild string Name string Level int Source string FirstSeen time.Time LastSeen time.Time } type UserRepo interface { Store(ctx context.Context, object *User) error }