notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

lib.rs (676B)


      1 mod app;
      2 //mod camera;
      3 mod error;
      4 //mod note;
      5 //mod block;
      6 pub mod accounts;
      7 pub mod actionbar;
      8 pub mod app_creation;
      9 mod app_style;
     10 mod args;
     11 pub mod column;
     12 mod deck_state;
     13 mod decks;
     14 mod draft;
     15 mod key_parsing;
     16 pub mod login_manager;
     17 mod media_upload;
     18 mod nav;
     19 mod onboarding;
     20 pub mod options;
     21 mod post;
     22 mod profile;
     23 mod repost;
     24 mod route;
     25 mod scoped_sub_owner_keys;
     26 mod search;
     27 mod support;
     28 mod test_data;
     29 pub mod timeline;
     30 mod timeline_loader;
     31 mod toolbar;
     32 pub mod ui;
     33 mod view_state;
     34 
     35 #[cfg(test)]
     36 #[macro_use]
     37 mod test_utils;
     38 
     39 pub mod storage;
     40 
     41 pub use app::Damus;
     42 pub use error::Error;
     43 pub use route::Route;
     44 
     45 pub type Result<T> = std::result::Result<T, error::Error>;