将model从pak包中移出到根目录
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2022-04-05 18:16:20 +08:00
parent 795028c4bb
commit 513b563728
11 changed files with 54 additions and 21 deletions

View File

@@ -3,7 +3,7 @@ package serializer
import "net/http"
type Response struct {
Code int32 `json:"code"`
Code int `json:"code"`
Msg string `json:"msg"`
Data interface{} `json:"data"`
}