Files
notedeck/crates/notedeck_columns/src/lib.rs
William Casarin 0cc1d8a600 Switch to unified timeline cache via TimelineKinds
This is a fairly large rewrite which unifies our threads, timelines and
profiles. Now all timelines have a MultiSubscriber, and can be added
and removed to columns just like Threads and Profiles.

Signed-off-by: William Casarin <jb55@jb55.com>
2025-02-05 18:30:45 -08:00

48 lines
709 B
Rust

mod app;
//mod camera;
mod error;
//mod note;
//mod block;
mod abbrev;
pub mod accounts;
mod actionbar;
pub mod app_creation;
mod app_style;
mod args;
mod colors;
mod column;
mod deck_state;
mod decks;
mod draft;
mod frame_history;
mod images;
mod key_parsing;
pub mod login_manager;
mod media_upload;
mod multi_subscriber;
mod nav;
mod post;
mod profile;
mod profile_state;
pub mod relay_pool_manager;
mod route;
mod subscriptions;
mod support;
mod test_data;
mod timeline;
pub mod ui;
mod unknowns;
mod view_state;
#[cfg(test)]
#[macro_use]
mod test_utils;
pub mod storage;
pub use app::Damus;
pub use error::Error;
pub use profile::NostrName;
pub type Result<T> = std::result::Result<T, error::Error>;