Files
nCovTrack-Backend/models/utils.go
2022-01-23 18:28:01 +08:00

15 lines
233 B
Go

package models
type UtilRequestInfo struct {
Url string
Header string
Body string
Timeout int
}
type GinResponse struct {
Code int `json:"code"`
Msg interface{} `json:"msg"`
Data interface{} `json:"data"`
}