8 lines
124 B
Go
8 lines
124 B
Go
|
package irisutils
|
||
|
|
||
|
// Standard response struct
|
||
|
type Resp struct {
|
||
|
Result bool `json:"result"`
|
||
|
Data any `json:"data"`
|
||
|
}
|