This commit is contained in:
Aynakeya
2022-06-26 01:44:26 -07:00
parent 8c6ea48ad4
commit dd46c167ff
16 changed files with 400 additions and 57 deletions

13
config/config_general.go Normal file
View File

@@ -0,0 +1,13 @@
package config
type _GeneralConfig struct {
Language string
}
func (c *_GeneralConfig) Name() string {
return "General"
}
var General = &_GeneralConfig{
Language: "en",
}