10 lines
175 B
Go
10 lines
175 B
Go
package contracts
|
|
|
|
type ResponseDefault struct {
|
|
Status string `json:"status"`
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
type Response[T any] struct {
|
|
Result T `json:"result"`
|
|
}
|