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