lib.rs (709B)
1 mod app; 2 //mod camera; 3 mod error; 4 //mod note; 5 //mod block; 6 mod abbrev; 7 pub mod accounts; 8 mod actionbar; 9 pub mod app_creation; 10 mod app_style; 11 mod args; 12 mod colors; 13 mod column; 14 mod deck_state; 15 mod decks; 16 mod draft; 17 mod frame_history; 18 mod images; 19 mod key_parsing; 20 pub mod login_manager; 21 mod media_upload; 22 mod multi_subscriber; 23 mod nav; 24 mod post; 25 mod profile; 26 mod profile_state; 27 pub mod relay_pool_manager; 28 mod route; 29 mod subscriptions; 30 mod support; 31 mod test_data; 32 mod timeline; 33 pub mod ui; 34 mod unknowns; 35 mod view_state; 36 37 #[cfg(test)] 38 #[macro_use] 39 mod test_utils; 40 41 pub mod storage; 42 43 pub use app::Damus; 44 pub use error::Error; 45 pub use profile::NostrName; 46 47 pub type Result<T> = std::result::Result<T, error::Error>;