7 lines
100 B
Go
7 lines
100 B
Go
package model
|
|
|
|
type APIResponse struct {
|
|
Data any `json:"data"`
|
|
Error string `json:"error"`
|
|
}
|