videoplayer/proto/req.go

8 lines
136 B
Go
Raw Normal View History

2025-05-02 21:58:40 +08:00
package proto
type GeneralResp struct {
Code int `json:"code"`
Message string `json:"message"`
Data any `json:"data"`
}