grain/relay/types/event.go

12 lines
297 B
Go
Raw Normal View History

2024-07-23 17:30:29 +00:00
package relay
type Event struct {
ID string `json:"id"`
PubKey string `json:"pubkey"`
CreatedAt int64 `json:"created_at"`
Kind int `json:"kind"`
Tags [][]string `json:"tags"`
Content string `json:"content"`
Sig string `json:"sig"`
}