mirror of
https://github.com/AlistGo/alist.git
synced 2025-09-15 12:58:42 +08:00
10 lines
135 B
Go
10 lines
135 B
Go
package conf
|
|
|
|
const (
|
|
TypeString = "string"
|
|
TypeSelect = "select"
|
|
TypeBool = "bool"
|
|
TypeText = "text"
|
|
TypeNumber = "number"
|
|
)
|