Files
notedeck/crates/notedeck_columns/src/lib.rs
William Casarin 8af80d7d10 ui: move note and profile rendering to notedeck_ui
We want to render notes in other apps like dave, so lets move
our note rendering to notedeck_ui. We rework NoteAction so it doesn't
have anything specific to notedeck_columns

Signed-off-by: William Casarin <jb55@jb55.com>
2025-04-17 12:34:43 -07:00

45 lines
660 B
Rust

mod app;
//mod camera;
mod error;
//mod note;
//mod block;
pub mod accounts;
mod actionbar;
pub mod app_creation;
mod app_style;
mod args;
mod column;
mod deck_state;
mod decks;
mod draft;
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 search;
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 route::Route;
pub type Result<T> = std::result::Result<T, error::Error>;