linstrom/storage/userIdentType.go

14 lines
262 B
Go
Raw Normal View History

2024-05-31 09:54:39 +00:00
package storage
2024-06-06 11:54:50 +00:00
// What kind of being a user identifies as
2024-05-31 09:54:39 +00:00
type Being string
const (
BEING_HUMAN = Being("human")
BEING_CAT = Being("cat")
BEING_FOX = Being("fox")
BEING_DOG = Being("dog")
BEING_ROBOT = Being("robot")
BEING_DOLL = Being("doll")
)