1
0
Fork 0
hivemind/internal/web/types.go

7 lines
143 B
Go

package web
type Response[T any] struct {
Ok bool `json:"ok"`
Data T `json:"data,omitempty"`
Err string `json:"err,omitempty"`
}