mirror of
https://github.com/alexgo-io/gaze-brc20-indexer.git
synced 2026-01-12 14:34:54 +08:00
7 lines
125 B
Go
7 lines
125 B
Go
package common
|
|
|
|
type HttpResponse[T any] struct {
|
|
Error *string `json:"error"`
|
|
Result *T `json:"result,omitempty"`
|
|
}
|