euv-cli 0.1.5

The official CLI tool for the euv UI framework, providing a development server with hot reload and wasm-pack integration.
1
2
3
4
5
6
use crate::*;

/// Global application state singleton.
///
/// Initialized once at server startup and shared across all request handlers.
pub(crate) static APP_STATE: OnceLock<Arc<AppState>> = OnceLock::new();