2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 06:47:20 +08:00
Files
panel/pkg/types/config.go
2024-10-13 00:35:56 +08:00

28 lines
633 B
Go

package types
// PanelConfig 面板配置结构体
type PanelConfig struct {
App PanelAppConfig `yaml:"app"`
HTTP PanelHTTPConfig `yaml:"http"`
Database PanelDatabaseConfig `yaml:"database"`
}
type PanelAppConfig struct {
Debug bool `yaml:"debug"`
Key string `yaml:"key"`
Locale string `yaml:"locale"`
Timezone string `yaml:"timezone"`
Root string `yaml:"root"`
}
type PanelHTTPConfig struct {
Debug bool `yaml:"debug"`
Port int `yaml:"port"`
Entrance string `yaml:"entrance"`
TLS bool `yaml:"tls"`
}
type PanelDatabaseConfig struct {
Debug bool `yaml:"debug"`
}