Skip to main content

seam_server/build_loader/
mod.rs

1/* packages/server/core/rust/src/build_loader/mod.rs */
2
3// Load page definitions from seam build output on disk.
4// Reads route-manifest.json, loads templates, constructs PageDef with loaders.
5
6mod loader;
7mod types;
8
9#[cfg(test)]
10mod tests;
11
12pub use loader::{load_build_output, load_i18n_config, load_rpc_hash_map};
13pub use types::RpcHashMap;