grain/server/types/event.go

11 lines
388 B
Go
Raw Permalink Normal View History

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