receipt_indexer/backend/internal/storage/groups.go
Ethan Wellenreiter f78f26bda5 Adding groups to storage and cleaning up storage a bit
Signed-off-by: Ethan Wellenreiter <ewellenreiter@gmail.com>
2025-05-01 23:06:17 -04:00

10 lines
215 B
Go

package storage
type Group struct {
ID int64 `json:"id"`
Name string `json:"name"`
Users []int64 `json:"users"`
Owner int64 `json:"owner"`
Moderators []int64 `json:"moderators"`
}