Experimenting with AT Protocol to hit up your friends
1//go:generate go run ../tools/generate-apis.go
2//go:generate lexgen --build-file lexicons.json ../lexicons
3
4// NOTE: generating a new lexicon for the first time requires a bit of a dance
5// to comment the generated code requiring MarshalCBOR:
6// https://github.com/bluesky-social/indigo/pull/716
7
8package api
9
10const (
11 ActorProfileNSID = "app.atyo.actor.profile"
12 PingNSID = "app.atyo.ping"
13
14 ActorProfileRKeySelf = "self"
15)