+4
cmd/recordcollector/main.go
+4
cmd/recordcollector/main.go
···
35
35
}
36
36
37
37
var labelPrefixes = map[string]string{
38
+
// NSID prefix // Label
39
+
"app.popsky": "app-popsky",
40
+
"com.shinolabs.pinksea": "com-shinolabs-pinksea",
38
41
"com.whtwnd": "com-whtwnd",
39
42
"events.smokesignal": "events-smokesignal",
40
43
"fm.teal": "fm-teal",
···
42
45
"im.flushing": "im-flushing",
43
46
"place.stream": "place-stream",
44
47
"sh.tangled": "sh-tangled",
48
+
"so.sprk": "so-sprk",
45
49
"xyz.statusphere": "xyz-statusphere",
46
50
}
47
51
+3
genlabeldefs.py
+3
genlabeldefs.py
···
3
3
import json
4
4
5
5
collections = [
6
+
('app-popsky', 'Popsky', 'pop culture hub (app.popsky.*)'),
7
+
('com-shinolabs-pinksea', 'PinkSea', 'oekaki on atproto (com.shinolabs.pinksea.*)'),
6
8
('com-whtwnd', 'WhiteWind', 'markdown blog service (com.whtwnd.*)'),
7
9
('events-smokesignal', 'Smoke Signal', 'manage events and RSVPs (events.smokesignal.*)'),
8
10
('fm-teal', 'teal.fm', 'your music, beautifully tracked (fm.teal.*)'),
···
10
12
('im-flushing', 'Flushes', 'The Decentralized Toilet Network of Planet Earth & Simulation 12B (im.flushing.*)'),
11
13
('place-stream', 'Streamplace', 'live video on the AT Protocol (place.stream.*)'),
12
14
('sh-tangled', 'Tangled', 'tightly-knit social coding (sh.tangled.*)'),
15
+
('so-sprk', 'Spark', 'short-form video/photo app (so.sprk.*)'),
13
16
('xyz-statusphere', 'Statusphere', 'atproto quick start (xyz.statusphere.*)'),
14
17
]
15
18