Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type UserServiceInterface ¶
type UserServiceInterface interface { GetAll() (*[]users.User, error) GetByID(int64) (*users.User, error) Create(users.User) (*users.User, error) Delete(int64) (*users.User, error) Update(int64, users.User) (*users.User, error) }
UserServiceInterface interface
var ( // UserService exported UserService UserServiceInterface = &userService{} )
Click to show internal directories.
Click to hide internal directories.