loveuer 0e984c46b4 init: 0.1.1
feat: login page && auth required
todo: 断点上传
2025-05-08 18:02:49 +08:00

13 lines
126 B
Go

package opt
type config struct {
Debug bool
Address string
DataPath string
Auth bool
}
var (
Cfg = &config{}
)