User login & logout

This commit is contained in:
2024-04-15 23:17:09 +02:00
parent 6ceda23af4
commit 3d507d36ea
6 changed files with 282 additions and 8 deletions

8
model/user.go Normal file
View File

@ -0,0 +1,8 @@
package model
type User struct {
Id UUID
Name string
Salt string
Password []byte
}