Files
nostrlib/nip86/types.go
T
2024-07-08 09:00:08 -03:00

12 lines
198 B
Go

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