This commit is contained in:
eson
2023-11-02 18:40:22 +08:00
commit 5785fea6b8
12 changed files with 772 additions and 0 deletions

7
server/config/config.go Normal file
View File

@@ -0,0 +1,7 @@
package config
type Config struct {
Name string `yaml:"Name"`
Host string `yaml:"Host"`
Port uint `yaml:"Port"`
}