recommender/internal/handler/http/response/http.go
2024-11-08 02:25:15 +08:00

10 lines
211 B
Go

package response
type ResponseBody struct {
Message string `json:"message"`
Error string `json:"error"`
Success bool `json:"success"`
Data any `json:"data,omitempty"`
Wrap bool `json:"-"`
}