17 lines
237 B
Go
17 lines
237 B
Go
package entity
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func NewFixtureUser() *User {
|
|
return &User{
|
|
ID: NewID(),
|
|
Email: "[email protected]",
|
|
Password: "123456",
|
|
FirstName: "Ozzy",
|
|
LastName: "Osbourne",
|
|
CreatedAt: time.Now(),
|
|
}
|
|
}
|