Files
notedeck/crates/notedeck_chrome/src/lib.rs
2025-08-06 19:00:30 -07:00

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;