Files
scheduler/config/model.go
2024-10-28 11:54:56 +08:00

17 lines
234 B
Go

package config
var (
ListenPort int
File string
DB database
)
type database struct {
Path string
//Port string
//User string
//Password string
// enable if you want use an instance other than SQLite
}