#![forbid(unsafe_code)]
#![forbid(missing_docs)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/448-engineering/Puppeteer/master/Documentation/Puppeteer-Logo-Icon.svg"
)]
mod app_env;
pub use app_env::*;
mod app;
pub use app::*;
mod traits;
pub use traits::*;
mod errors;
pub use errors::*;
mod logging;
pub use logging::*;
mod shell;
pub use shell::*;
mod titlebar;
pub use titlebar::*;
mod ui_ops;
pub use ui_ops::*;
mod html_utils;
pub use html_utils::*;
mod assets;
pub use assets::*;
mod utils;
pub use arrayvec;
pub use async_trait;
pub use smol;
pub use thiserror;
pub use tracing;
pub use wry;