mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-07 02:42:50 +08:00
17 lines
249 B
Go
17 lines
249 B
Go
package config
|
|
|
|
type _GeneralConfig struct {
|
|
BaseConfig
|
|
Language string
|
|
AutoCheckUpdate bool
|
|
}
|
|
|
|
func (c *_GeneralConfig) Name() string {
|
|
return "General"
|
|
}
|
|
|
|
var General = &_GeneralConfig{
|
|
Language: "en",
|
|
AutoCheckUpdate: true,
|
|
}
|