Code requirement db funcs, enum, code removal

This commit is contained in:
2023-12-19 08:01:43 -06:00
parent 511b776cc7
commit cd33333b55
2 changed files with 32 additions and 0 deletions

View File

@@ -11,3 +11,9 @@ type Field struct {
text string // The text displayed
id string // The id of the field
}
const (
GuestCodeRequired = iota
GuestCodeNotRequired = iota
Unknown = iota
)