alist/conf/var.go

19 lines
351 B
Go
Raw Normal View History

2021-10-25 10:53:59 +00:00
package conf
import "gorm.io/gorm"
var (
ConfigFile string // config file
2021-10-26 14:28:37 +00:00
Conf *Config
Debug bool
2021-10-25 10:53:59 +00:00
DB *gorm.DB
2021-10-26 14:28:37 +00:00
)
var (
TextTypes = []string{"txt", "go"}
OfficeTypes = []string{"doc", "docx", "xls", "xlsx", "ppt", "pptx", "pdf"}
VideoTypes = []string{"mp4", "mkv", "avi", "mov", "rmvb"}
AudioTypes = []string{"mp3", "flac"}
)