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