Some kind of starting point

This commit is contained in:
2020-12-29 13:46:58 +01:00
commit 1811f200c0
14 changed files with 398 additions and 0 deletions

11
src/db/types.go Normal file
View File

@@ -0,0 +1,11 @@
package db
import (
"github.com/google/uuid"
)
// User is a user in the system
type User struct {
ID uuid.UUID `json:"id"`
Username string `json:"username"`
}