notedeck

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

lib.rs (162B)


      1 pub mod fonts;
      2 pub mod setup;
      3 pub mod theme;
      4 
      5 #[cfg(target_os = "android")]
      6 mod android;
      7 
      8 mod app;
      9 mod chrome;
     10 
     11 pub use app::NotedeckApp;
     12 pub use chrome::Chrome;