Files
Genarrative/server-rs/crates/spacetime-module/src/lib.rs
T
kdletters 4f86c1a75b 合并 master 并保留外部生成 worker 模式
合入 master 的拼消消、微信能力、OpenSSL 3.2 和 SpacetimeDB 2.4.1 更新
保留外部内容生成 queue/inline、worker lease 与动态扩缩容口径
补齐拼图后台图片生成队列轮询和运行态返回恢复
同步容器、生产运维和 Hermes 共享记忆中的 worker 文档
2026-06-09 16:55:32 +08:00

66 lines
1.6 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_big_fish::*;
pub use module_combat::*;
pub use module_custom_world::*;
pub use module_inventory::*;
pub use module_jump_hop::*;
pub use module_npc::*;
pub use module_progression::*;
pub use module_puzzle_clear::*;
pub use module_quest::*;
pub use module_runtime::*;
pub use module_runtime_item::*;
pub use module_story::*;
pub use module_wooden_fish::*;
pub(crate) use serde_json::{Map as JsonMap, Value as JsonValue, json};
pub(crate) use shared_kernel::format_timestamp_micros;
pub use spacetimedb::{
Identity, ProcedureContext, ReducerContext, SpacetimeType, Table, Timestamp,
};
mod ai;
mod asset_metadata;
mod auth;
mod bark_battle;
mod big_fish;
mod custom_world;
mod domain_types;
mod entry;
mod external_generation;
mod gameplay;
mod jump_hop;
mod match3d;
mod migration;
mod public_work;
mod puzzle;
mod puzzle_clear;
mod runtime;
mod square_hole;
mod visual_novel;
mod wooden_fish;
pub use ai::*;
pub use asset_metadata::*;
pub use auth::*;
pub use bark_battle::*;
pub use big_fish::*;
pub use custom_world::*;
pub use domain_types::*;
pub use entry::*;
pub use external_generation::*;
pub use gameplay::*;
pub use jump_hop::*;
pub use match3d::*;
pub use migration::*;
pub use public_work::*;
pub use puzzle_clear::*;
pub use runtime::*;
pub use square_hole::*;
pub use visual_novel::*;
pub use wooden_fish::*;