22 lines
666 B
Rust
22 lines
666 B
Rust
// file: crates/apps/game-snake-poc-tauri/src/lib.rs
|
|
// version: 1
|
|
|
|
//! Tauri Android application facade for the Snake WebAssembly POC.
|
|
|
|
#![forbid(unsafe_code)]
|
|
#![deny(unreachable_pub)]
|
|
#![warn(missing_docs)]
|
|
|
|
mod runtime;
|
|
mod tauri;
|
|
|
|
/// Runs the Snake Tauri application.
|
|
pub use self::tauri::run;
|
|
|
|
/// Runtime descriptor exposed by the native Tauri bridge.
|
|
pub(crate) use self::runtime::RuntimeDescriptorDto;
|
|
/// Records that the Tauri frontend completed its minimal startup sequence.
|
|
pub(crate) use self::runtime::record_frontend_ready;
|
|
/// Returns the canonical runtime descriptor for the Android WebView host.
|
|
pub(crate) use self::runtime::runtime_descriptor;
|