receipt_indexer/backend/internal/storage/roles.go
Ethan Wellenreiter f608f29842 Updating storage and adding SQL DB schema
Unfinished

Signed-off-by: Ethan Wellenreiter <ewellenreiter@gmail.com>
2025-05-02 20:26:31 -04:00

9 lines
180 B
Go

package storage
type Role struct {
ID int64 `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Level int `json:"level"`
}