Files
realy/nip86/types.go
2024-09-16 19:00:32 +01:00

12 lines
200 B
Go

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