Files
scheduler/config/model.go

18 lines
247 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
Type string
}