8 lines
172 B
Go
8 lines
172 B
Go
package user
|
|
|
|
// Repo represents the user repository interface.
|
|
type Repo interface{}
|
|
|
|
// Service represents the user service interface.(UseCases)
|
|
type Service interface{}
|