mirror of
https://github.com/ZSCNetSupportDept/scheduler.git
synced 2025-10-29 04:55:04 +08:00
21 lines
275 B
Go
21 lines
275 B
Go
package config
|
|
|
|
var (
|
|
ListenPort int
|
|
DB database
|
|
Session string
|
|
Semester int
|
|
StartTime string
|
|
Week int
|
|
File string
|
|
)
|
|
|
|
type database struct {
|
|
Type string
|
|
Path string
|
|
Port int
|
|
User string
|
|
Password string
|
|
Name string
|
|
}
|