File size: 334 Bytes
b7e7f16
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! HTTP transport surface for the example application.
//!
//! The API layer is split into:
//! - DTOs that translate runtime/domain types into JSON
//! - routes that bind those DTOs to HTTP endpoints
//! - SSE glue for live lifecycle updates

mod dto;
mod routes;
mod sse;

pub use dto::PlanDto;
pub use routes::{router, AppState};