feat: users & authentication implementation

This commit is contained in:
Florian Sylvain
2023-08-07 12:31:29 +02:00
parent e258dccc1c
commit f33f53ca76
15 changed files with 550 additions and 18 deletions
+10
View File
@@ -0,0 +1,10 @@
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)
}