mirror of
https://github.com/AlistGo/alist.git
synced 2026-01-02 04:49:01 +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"
|
|
)
|