package users type User struct { Id int Email string } func NewUser(id int, email string) *User { return &User{id, email} }