go-study/gomock/user.go
2024-05-29 11:02:08 +08:00

11 lines
124 B
Go

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