7ea463ed08
保留 SpacetimeDB 历史表、迁移白名单与最小兼容读取定义 移除旧创作前后端、worker、业务过程及纯业务 crate 的编译依赖 恢复现役创作、项目、我的入口及桌面移动导航 收紧 Vite、TypeScript、ESLint、Vitest 与静态资源退役边界 补齐开发栈、网关、原生壳和文档退役约束
68 lines
1.8 KiB
Rust
68 lines
1.8 KiB
Rust
// 中文注释:SpacetimeDB 绑定生成依赖根模块继续公开 re-export 各领域类型;
|
|
// 少数领域 helper 同名只影响 value namespace 导出,不影响 table / reducer 类型。
|
|
#![allow(ambiguous_glob_reexports)]
|
|
|
|
pub use module_ai::*;
|
|
pub use module_assets::*;
|
|
pub use module_runtime::*;
|
|
|
|
pub(crate) use serde_json::{Map as JsonMap, Value as JsonValue, json};
|
|
pub use spacetimedb::{
|
|
Identity, ProcedureContext, ReducerContext, ScheduleAt, SpacetimeType, Table, Timestamp,
|
|
};
|
|
mod admin_account_storage;
|
|
mod admin_dashboard;
|
|
mod ai;
|
|
mod asset_metadata;
|
|
mod auth;
|
|
#[path = "legacy_schema/bark_battle.rs"]
|
|
mod bark_battle;
|
|
#[path = "legacy_schema/big_fish.rs"]
|
|
mod big_fish;
|
|
#[path = "legacy_schema/custom_world.rs"]
|
|
mod custom_world;
|
|
mod editor_agent_storage;
|
|
mod editor_project_storage;
|
|
mod external_api_key_storage;
|
|
mod external_generation;
|
|
#[path = "legacy_schema/gameplay.rs"]
|
|
mod gameplay;
|
|
#[path = "legacy_schema/jump_hop.rs"]
|
|
mod jump_hop;
|
|
#[path = "legacy_schema/match3d.rs"]
|
|
mod match3d;
|
|
mod migration;
|
|
#[path = "legacy_schema/puzzle.rs"]
|
|
mod puzzle;
|
|
#[path = "legacy_schema/puzzle_clear.rs"]
|
|
mod puzzle_clear;
|
|
mod runtime;
|
|
#[path = "legacy_schema/square_hole.rs"]
|
|
mod square_hole;
|
|
#[path = "legacy_schema/visual_novel.rs"]
|
|
mod visual_novel;
|
|
#[path = "legacy_schema/wooden_fish.rs"]
|
|
mod wooden_fish;
|
|
|
|
pub use admin_account_storage::*;
|
|
pub use admin_dashboard::*;
|
|
pub use ai::*;
|
|
pub use asset_metadata::*;
|
|
pub use auth::*;
|
|
pub use bark_battle::*;
|
|
pub use big_fish::*;
|
|
pub use custom_world::*;
|
|
pub use editor_agent_storage::*;
|
|
pub use editor_project_storage::*;
|
|
pub use external_api_key_storage::*;
|
|
pub use external_generation::*;
|
|
pub use gameplay::*;
|
|
pub use jump_hop::*;
|
|
pub use match3d::*;
|
|
pub use migration::*;
|
|
pub use puzzle_clear::*;
|
|
pub use runtime::*;
|
|
pub use square_hole::*;
|
|
pub use visual_novel::*;
|
|
pub use wooden_fish::*;
|