package gomock type User struct { ID int Name string } type UserService interface { GetUser(id int) (*User, error) }