1
0
Fork 0
forked from alemi/upub
upub/web/src/prelude.rs
alemi 8ab39bfb2b
feat(web): hashtags timeline page
rather jank, literally hotglued on other feeds but eh it works for now
ig?
2024-07-04 03:14:26 +02:00

30 lines
513 B
Rust

pub use crate::{
URL_BASE,
Http, Uri,
IdParam,
Cache, cache, // TODO move Cache under cache
app::{Feeds, Loader},
auth::Auth,
page::*,
components::*,
actors::{
header::ActorHeader,
follow::FollowList,
posts::ActorPosts,
},
activities::{
item::Item,
},
objects::{
view::ObjectView,
attachment::Attachment,
item::{Object, Summary, LikeButton, RepostButton, ReplyButton},
},
timeline::{
Timeline,
feed::{Feed, HashtagFeed},
thread::Thread,
},
};
pub use uriproxy::UriClass as U;