mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-06 10:22:50 +08:00
14 lines
177 B
Go
14 lines
177 B
Go
package config
|
|
|
|
type _GeneralConfig struct {
|
|
Language string
|
|
}
|
|
|
|
func (c *_GeneralConfig) Name() string {
|
|
return "General"
|
|
}
|
|
|
|
var General = &_GeneralConfig{
|
|
Language: "en",
|
|
}
|