2022-08-25 22:57:29 -06:00
|
|
|
package models
|
|
|
|
|
|
|
|
type ResponseWrapper struct {
|
|
|
|
Success bool `json:"success"`
|
|
|
|
Error string `json:"error"`
|
|
|
|
Data interface{} `json:"data"`
|
|
|
|
}
|
2024-02-09 10:10:06 -07:00
|
|
|
|
|
|
|
type ResponseWrapperTyped[T any] struct {
|
|
|
|
Success bool `json:"success"`
|
|
|
|
Error string `json:"error"`
|
|
|
|
Data T `json:"data"`
|
|
|
|
}
|