mirror of
https://github.com/0ceanSlim/grain.git
synced 2024-11-22 16:47:13 +00:00
12 lines
298 B
Go
12 lines
298 B
Go
|
package server
|
||
|
|
||
|
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"`
|
||
|
}
|