9 lines
187 B
Go
9 lines
187 B
Go
package bodyGeneric
|
|
|
|
type CustomResponse[T any] struct {
|
|
Success bool `json:"success"`
|
|
Status int `json:"status"`
|
|
Message string `json:"message"`
|
|
Data T `json:"data"`
|
|
}
|