mirror of
https://github.com/aljazceru/notedeck.git
synced 2025-12-23 19:24:18 +01:00
Fixes: https://github.com/damus-io/notedeck/issues/969 Signed-off-by: William Casarin <jb55@jb55.com>
44 lines
642 B
Rust
44 lines
642 B
Rust
mod app;
|
|
//mod camera;
|
|
mod error;
|
|
//mod note;
|
|
//mod block;
|
|
pub mod accounts;
|
|
pub mod actionbar;
|
|
pub mod app_creation;
|
|
mod app_style;
|
|
mod args;
|
|
pub mod column;
|
|
mod deck_state;
|
|
mod decks;
|
|
mod draft;
|
|
mod key_parsing;
|
|
pub mod login_manager;
|
|
mod media_upload;
|
|
mod multi_subscriber;
|
|
mod nav;
|
|
pub mod options;
|
|
mod post;
|
|
mod profile;
|
|
mod route;
|
|
mod search;
|
|
mod subscriptions;
|
|
mod support;
|
|
mod test_data;
|
|
pub 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>;
|