upub/web/src/prelude.rs

32 lines
565 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},
context::ObjectContext,
replies::ObjectReplies,
},
timeline::{
Timeline,
feed::{Feed, HashtagFeed},
thread::Thread,
},
};
pub use uriproxy::UriClass as U;