lightweight com.atproto.sync.listReposByCollection
at main 24 lines 762 B view raw
1const HELLO: &str = r#" 2 3______________________________________art_@roooooland.bsky.social_ 4 __________<______________ _________________________ ______ 5 / ] [ ] LIGHTRAIL [ ] || [ ] [ ] [ \ / ] [ 6 |__] [__] |‾|‾| [__] || [__] |‾|‾| [__] [__| |__] [_ 7 = ___ | | |. ___ || ___ .| | | ___ |x| ___ 8 |/o-o\______|_|_|_____/o-o\||/o-o\_____|_|_|______/o-o\| |/o-o\__ 9 10 11this is an atproto backfill-by-collection assister. 12 13available endpoints: 14 15 - /xrpc/com.atproto.sync.listRepos 16 - /xrpc/com.atproto.sync.listReposByCollection <= the real deal 17 - /xrpc/com.atproto.sync.getRepoStatus 18 19source: https://tangled.org/microcosm.blue/lightrail 20"#; 21 22pub async fn hello() -> &'static str { 23 HELLO 24}