go-study/gomock/user.go

11 lines
124 B
Go
Raw Normal View History

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