11 lines
124 B
Go
11 lines
124 B
Go
package gomock
|
|
|
|
type User struct {
|
|
ID int
|
|
Name string
|
|
}
|
|
|
|
type UserService interface {
|
|
GetUser(id int) (*User, error)
|
|
}
|