A personal app view to see Bsky posts of your followers (for when their app view goes down)
17
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove unused imports

Signed-off-by: Will Andrews <did:plc:dadhhalkfcq3gucaq25hjqon>

+1 -10
+1 -10
src/xrpc/routes.rs
··· 1 1 use crate::server::AppState; 2 2 use crate::server::XrpcErrorResponse; 3 3 use axum::{Json, extract::State}; 4 - use jacquard::types::{ 5 - aturi::AtUri, 6 - cid::Cid, 7 - did::Did, 8 - string::{Datetime, Handle}, 9 - }; 10 4 use jacquard::xrpc::atproto::GetRecordOutput; 5 + use jacquard_api::app_bsky::feed::get_timeline::GetTimelineOutput; 11 6 use jacquard_api::app_bsky::feed::{ 12 7 get_feed::{GetFeedOutput, GetFeedRequest}, 13 8 get_timeline::GetTimelineRequest, 14 - }; 15 - use jacquard_api::app_bsky::{ 16 - actor::ProfileViewBasic, 17 - feed::{FeedViewPost, PostView, get_timeline::GetTimelineOutput}, 18 9 }; 19 10 20 11 use jacquard_api::tools_ozone::moderation::get_record::GetRecordRequest;