atrium_api/app/bsky/
actor.rs1pub mod defs;
4pub mod get_preferences;
5pub mod get_profile;
6pub mod get_profiles;
7pub mod get_suggestions;
8pub mod profile;
9pub mod put_preferences;
10pub mod search_actors;
11pub mod search_actors_typeahead;
12pub mod status;
13#[derive(Debug)]
14pub struct Profile;
15impl crate::types::Collection for Profile {
16 const NSID: &'static str = "app.bsky.actor.profile";
17 type Record = profile::Record;
18}
19#[derive(Debug)]
20pub struct Status;
21impl crate::types::Collection for Status {
22 const NSID: &'static str = "app.bsky.actor.status";
23 type Record = status::Record;
24}