Files
alist/internal/conf/const.go

10 lines
135 B
Go
Raw Normal View History

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