mirror of
https://github.com/ZSCNetSupportDept/scheduler.git
synced 2025-10-28 12:35:03 +08:00
17 lines
234 B
Go
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
|
|
}
|