Initial commit

This commit is contained in:
2022-08-11 17:21:32 +02:00
commit f6aa45944d
19 changed files with 2605 additions and 0 deletions

8
storage/groups.go Normal file
View File

@@ -0,0 +1,8 @@
package storage
type Group struct {
ID string `json:"id" bson:"_id"`
Namespace string `json:"namespace"`
Members []string `json:"members"`
Data map[string]any `json:"data"`
}