I have user model
protocol AppUser: Hashable { var name: String { get } } struct AppUserImpl: AppUser { var name: String }
factory