11 lines
132 B
Go
11 lines
132 B
Go
|
package users
|
||
|
|
||
|
type User struct {
|
||
|
Id int
|
||
|
Email string
|
||
|
}
|
||
|
|
||
|
func NewUser(id int, email string) *User {
|
||
|
return &User{id, email}
|
||
|
}
|