13 lines
177 B
Rust
13 lines
177 B
Rust
pub mod setup;
|
|
|
|
#[cfg(target_os = "android")]
|
|
mod android;
|
|
|
|
mod app;
|
|
mod chrome;
|
|
mod options;
|
|
|
|
pub use app::NotedeckApp;
|
|
pub use chrome::Chrome;
|
|
pub use options::ChromeOptions;
|