mirror of https://github.com/Xhofe/alist
40 lines
838 B
Go
40 lines
838 B
Go
package conf
|
|
|
|
const (
|
|
TypeString = "string"
|
|
TypeSelect = "select"
|
|
TypeBool = "bool"
|
|
TypeText = "text"
|
|
TypeNumber = "number"
|
|
)
|
|
|
|
const (
|
|
VERSION = "version"
|
|
ApiUrl = "api_url"
|
|
BasePath = "base_path"
|
|
SiteTitle = "site_title"
|
|
Logo = "logo"
|
|
Favicon = "favicon"
|
|
Announcement = "announcement"
|
|
IconColor = "icon_color"
|
|
|
|
TextTypes = "text_types"
|
|
AudioTypes = "audio_types"
|
|
VideoTypes = "video_types"
|
|
ProxyTypes = "proxy_types"
|
|
PdfViewerUrl = "pdf_viewer_url"
|
|
AudioAutoplay = "audio_autoplay"
|
|
VideoAutoplay = "video_autoplay"
|
|
|
|
HideFiles = "hide_files"
|
|
GlobalReadme = "global_readme"
|
|
CustomizeHead = "customize_head"
|
|
CustomizeBody = "customize_body"
|
|
LinkExpiration = "link_expiration"
|
|
|
|
Aria2Uri = "aria2_uri"
|
|
Aria2Secret = "aria2_secret"
|
|
|
|
Token = "token"
|
|
)
|