Files
mnote/rust/crates/mnote-web/src/page_aggregate.rs
T

12 lines
405 B
Rust
Raw Normal View History

//! Page Aggregate HTTP/SSR adapter。
2026-04-29 12:24:44 +08:00
//!
//! 核心契约定义在 `core-protocol`mnote-web 仅保留 builder 便于
//! 迁移期把 meta/content join 适配为同一个 projection。
2026-04-29 12:24:44 +08:00
pub mod builder;
pub use core_protocol::{
PageAggregateProjection as PageAggregate, PageAggregateSource, PageBody, PageHead,
PageIdentity, PageLayout, PageOptions, PagePermissions, PageStats, PageTree,
};