//! Common imports for application code using typed topics and the runtime handle.
//!
//! Prefer this prelude when you want `Event`, `SubscribeOpts`, macros, and `Photon` in scope
//! without importing the full runtime module tree. For backend wiring and transport types, import
//! from the crate root explicitly.
//!
//! # Example
//!
//! ```rust,no_run
//! use photon::prelude::*;
//!
//! #[topic(name = "app.events.demo")]
//! pub struct Demo {
//! pub n: u32,
//! }
//!
//! # async fn demo() -> photon::Result<()> {
//! let photon = Photon::builder().auto_registry().build()?;
//! configure(photon);
//! Demo { n: 1 }.publish().await?;
//! # Ok(())
//! # }
//! ```
pub use ;
pub use ;
pub use ;
pub use ;