Skip to main content

pyro_macro/ffi/lifecycle/
mod.rs

1//! Lifecycle function parsing and FFI generation
2//!
3//! This module handles the three required lifecycle functions:
4//! - `new` - Initialize the server state
5//! - `reset` - Reset the server state
6//! - `new_client` - Register a new client
7
8pub mod init;
9pub mod new_client;
10pub mod reset;
11
12pub use init::InitFn;
13pub use new_client::NewClientFn;
14pub use reset::ResetFn;