alist/internal/conf/const.go

10 lines
135 B
Go
Raw Normal View History

2022-06-06 13:48:53 +00:00
package conf
2022-06-27 06:32:21 +00:00
const (
TypeString = "string"
TypeSelect = "select"
TypeBool = "bool"
TypeText = "text"
TypeNumber = "number"
)