notedeck

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

lib.rs (652B)


      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 drag;
     16 mod key_parsing;
     17 pub mod login_manager;
     18 mod media_upload;
     19 mod multi_subscriber;
     20 mod nav;
     21 pub mod options;
     22 mod post;
     23 mod profile;
     24 mod route;
     25 mod search;
     26 mod subscriptions;
     27 mod support;
     28 mod test_data;
     29 pub mod timeline;
     30 pub mod ui;
     31 mod unknowns;
     32 mod view_state;
     33 
     34 #[cfg(test)]
     35 #[macro_use]
     36 mod test_utils;
     37 
     38 pub mod storage;
     39 
     40 pub use app::Damus;
     41 pub use error::Error;
     42 pub use route::Route;
     43 
     44 pub type Result<T> = std::result::Result<T, error::Error>;