mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 19:53:21 +02:00
11 lines
211 B
Go
11 lines
211 B
Go
package gateways
|
|
|
|
import . "GohCMS2/domain/user"
|
|
|
|
type IUserRepository interface {
|
|
Get(id uint32) (User, error)
|
|
GetByUsername(username string) (User, error)
|
|
GetAll() []User
|
|
Create(user User) (User, error)
|
|
}
|