更新项目配置,修改 Go 版本至 1.24,添加依赖项,重构主程序以加载配置和初始化服务,删除不再使用的远程目标配置文件。
This commit is contained in:
8
cmii-uav-watchdog/models/response.go
Normal file
8
cmii-uav-watchdog/models/response.go
Normal file
@@ -0,0 +1,8 @@
|
||||
package models
|
||||
|
||||
// Response 通用响应模型
|
||||
type Response struct {
|
||||
Code int `json:"code"` // 状态码
|
||||
Message string `json:"message"` // 响应消息
|
||||
Data interface{} `json:"data"` // 响应数据
|
||||
}
|
||||
Reference in New Issue
Block a user