Files
gaze-brc20-indexer/common/http.go
2024-06-06 21:44:13 +07:00

7 lines
125 B
Go

package common
type HttpResponse[T any] struct {
Error *string `json:"error"`
Result *T `json:"result,omitempty"`
}