10 lines
135 B
Go
10 lines
135 B
Go
package conf
|
|
|
|
const (
|
|
TypeString = "string"
|
|
TypeSelect = "select"
|
|
TypeBool = "bool"
|
|
TypeText = "text"
|
|
TypeNumber = "number"
|
|
)
|