framework_v2/internal/consts/base_response.go

9 lines
189 B
Go
Raw Normal View History

2024-06-13 08:36:10 +00:00
package consts
type BaseResponse struct {
Message string `json:"message"`
Error string `json:"error,omitempty"`
Code int `json:"code"`
Data any `json:"data,omitempty"`
}