1//! SSR pipeline for Crepuscularity: Axum handlers that render .crepus templates server-side.
2pub mod handler;
3pub mod router;
4pub mod stream;
56pub use handler::{SsrHandler, SsrOptions};
7pub use router::{RouteEntry, SsrRouter};
8pub use stream::{stream_ssr_response, stream_static_template};