Added endpoint for shares

This commit is contained in:
2026-03-04 14:23:09 +01:00
parent 2f4e0bb8ce
commit 91997686d1
7 changed files with 102 additions and 10 deletions

14
models/constants.go Normal file
View File

@@ -0,0 +1,14 @@
package models
// Roles
const (
RoleUser = "user"
RoleAdmin = "admin"
)
// ID-Types
const (
IDTypeSHARE = "share"
IDTypeEXPENSE = "expense"
IDTypeUSER = "user"
)