go-nostr/nip86/types.go
2024-07-12 13:45:47 -03:00

12 lines
208 B
Go

package nip86
type Request struct {
Method string `json:"method"`
Params []any `json:"params"`
}
type Response struct {
Result any `json:"result,omitempty"`
Error string `json:"error,omitempty"`
}