first commit

This commit is contained in:
cdle
2023-06-01 08:41:54 +08:00
parent 61b0e99833
commit d253ed8d5b
80 changed files with 14245 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
package core
type Yaml struct {
EnableRedis bool `yaml:"enable_redis"`
RedisAddr string `yaml:"redis_addr"`
RedisPassword string `yaml:"redis_password"`
SlaveMode bool `yaml:"slave_mode"`
HttpPort string `yaml:"http_port"`
}
var Config Yaml