recommender/internal/handler/http/response/http.go

10 lines
211 B
Go
Raw Normal View History

2024-11-07 18:25:15 +00:00
package response
2024-11-07 10:09:13 +00:00
type ResponseBody struct {
Message string `json:"message"`
Error string `json:"error"`
Success bool `json:"success"`
Data any `json:"data,omitempty"`
Wrap bool `json:"-"`
}