gut/irisutils/resp.go
2024-02-17 22:46:50 +01:00

8 lines
124 B
Go

package irisutils
// Standard response struct
type Resp struct {
Result bool `json:"result"`
Data any `json:"data"`
}