atrium_api/app/bsky/
graph.rs1pub mod block;
4pub mod defs;
5pub mod follow;
6pub mod get_actor_starter_packs;
7pub mod get_blocks;
8pub mod get_followers;
9pub mod get_follows;
10pub mod get_known_followers;
11pub mod get_list;
12pub mod get_list_blocks;
13pub mod get_list_mutes;
14pub mod get_lists;
15pub mod get_lists_with_membership;
16pub mod get_mutes;
17pub mod get_relationships;
18pub mod get_starter_pack;
19pub mod get_starter_packs;
20pub mod get_starter_packs_with_membership;
21pub mod get_suggested_follows_by_actor;
22pub mod list;
23pub mod listblock;
24pub mod listitem;
25pub mod mute_actor;
26pub mod mute_actor_list;
27pub mod mute_thread;
28pub mod search_starter_packs;
29pub mod starterpack;
30pub mod unmute_actor;
31pub mod unmute_actor_list;
32pub mod unmute_thread;
33pub mod verification;
34#[derive(Debug)]
35pub struct Block;
36impl crate::types::Collection for Block {
37 const NSID: &'static str = "app.bsky.graph.block";
38 type Record = block::Record;
39}
40#[derive(Debug)]
41pub struct Follow;
42impl crate::types::Collection for Follow {
43 const NSID: &'static str = "app.bsky.graph.follow";
44 type Record = follow::Record;
45}
46#[derive(Debug)]
47pub struct List;
48impl crate::types::Collection for List {
49 const NSID: &'static str = "app.bsky.graph.list";
50 type Record = list::Record;
51}
52#[derive(Debug)]
53pub struct Listblock;
54impl crate::types::Collection for Listblock {
55 const NSID: &'static str = "app.bsky.graph.listblock";
56 type Record = listblock::Record;
57}
58#[derive(Debug)]
59pub struct Listitem;
60impl crate::types::Collection for Listitem {
61 const NSID: &'static str = "app.bsky.graph.listitem";
62 type Record = listitem::Record;
63}
64#[derive(Debug)]
65pub struct Starterpack;
66impl crate::types::Collection for Starterpack {
67 const NSID: &'static str = "app.bsky.graph.starterpack";
68 type Record = starterpack::Record;
69}
70#[derive(Debug)]
71pub struct Verification;
72impl crate::types::Collection for Verification {
73 const NSID: &'static str = "app.bsky.graph.verification";
74 type Record = verification::Record;
75}