Files
cmii-uav-watchdog-project/cmii-uav-watchdog-center/config/config.go
2025-12-06 11:26:05 +08:00

12 lines
223 B
Go

package config
// Config 配置模型
type Config struct {
Server ServerConfig `json:"server"` // 服务器配置
}
// ServerConfig 服务器配置
type ServerConfig struct {
Port int `json:"port"` // 服务器端口
}