notedeck

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

lib.rs (704B)


      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 multi_subscriber;
     22 mod nav;
     23 mod notes_holder;
     24 mod post;
     25 mod profile;
     26 pub mod relay_pool_manager;
     27 mod route;
     28 mod subscriptions;
     29 mod support;
     30 mod test_data;
     31 mod thread;
     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::DisplayName;
     46 
     47 pub type Result<T> = std::result::Result<T, error::Error>;