feat: 初始化路由组

This commit is contained in:
Blizzard
2025-04-26 22:41:16 +08:00
parent 5e41df7dc2
commit 77405783c6
17 changed files with 264 additions and 5 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
package config
type System struct {
Port int `mapstructure:"port" json:"port" yaml:"port"`
DbType string `mapstructure:"db-type" json:"db-type" yaml:"db-type"`
Addr int `mapstructure:"addr" json:"addr" yaml:"addr"`
DbType string `mapstructure:"db-type" json:"db-type" yaml:"db-type"`
RouterPrefix string `mapstructure:"router-prefix" json:"router-prefix" yaml:"router-prefix"`
}