xfy 373498870a
Some checks failed
CI / check (push) Failing after 5m35s
CI / build (push) Has been skipped
style: apply cargo fmt to workspace
2026-06-29 13:47:40 +08:00

14 lines
488 B
Rust
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//! 数据模型模块。
//!
//! 定义博客系统使用的核心领域模型包括文章Post、用户User与评论Comment
//! 这些结构体通过 serde 在服务端与客户端之间共享序列化。
/// 评论模型及其状态枚举。
pub mod comment;
/// 文章模型、文章状态、标签与统计信息。
pub mod post;
/// 回收站与站点配置模型。
pub mod settings;
/// 用户模型、用户角色与可公开用户信息。
pub mod user;