Files
Genarrative/server-rs/crates/shared-contracts/src/lib.rs
T
kdletters 429f991bde
Project CI / AI game creator shell Rust shard 2/4 (push) Failing after 19s
Project CI / AI game creator shell Rust shard 3/4 (push) Failing after 20s
Project CI / AI game creator shell Rust shard 1/4 (push) Failing after 20s
Project CI / AI game creator shell Rust shard 4/4 (push) Failing after 20s
Project CI / Backend tests (push) Failing after 17s
Project CI / AI game creator shell Rust crates (push) Failing after 17s
Project CI / AI game creator shell Rust smoke (push) Failing after 19s
Project CI / Native shell tests (push) Failing after 18s
Project CI / Frontend tests (push) Failing after 8s
Project CI / AI game creator shell web tests (push) Failing after 15s
Project CI / Repository checks (push) Failing after 17s
回滚误入 master 的游戏分发 WIP(夹带在 OSS v1 签名提交里)
- 撤销 39aed2e48 夹带的游戏分发前后端、SpacetimeDB 绑定、主站路由、后台审核页、文档与 nginx 改动,master 恢复可编译状态
- 保留该提交自身的 AGC 发号改动:agc-global-version.mjs 与其参数构造单测
- 恢复被误删的 output 产物,避免把无关清理混进该提交
- 补回两篇技术文档在 docs/README.md 的索引(它们属于后续两个补提交文档,不属于游戏分发)
- 游戏分发完整实现保留在 codex/game-distribution 分支继续开发
2026-09-20 20:52:24 +08:00

66 lines
1.5 KiB
Rust

pub mod admin;
pub mod agc_project_snapshots;
pub mod ai;
pub mod api;
#[cfg(feature = "oss-contracts")]
pub mod assets;
pub mod auth;
#[cfg(any())]
pub mod bark_battle;
#[cfg(any())]
pub mod big_fish;
#[cfg(any())]
pub mod big_fish_works;
pub mod client_downloads;
#[cfg(any())]
pub mod creation_agent_document_input;
pub mod creation_audio;
#[cfg(any())]
pub mod creation_entry_config;
#[cfg(any())]
pub mod creative_agent;
pub mod editor_agent;
pub mod editor_generation;
pub mod error_reports;
pub use editor_generation::{
EDITOR_GENERATION_ASSET_BINDING_ID_PREFIX, EDITOR_GENERATION_ASSET_ID_PREFIX,
EDITOR_GENERATION_ASSET_OBJECT_ID_PREFIX, EDITOR_GENERATION_RESOURCE_ID_PREFIX,
editor_generation_request_fingerprint, editor_generation_stable_asset_binding_id,
editor_generation_stable_asset_id, editor_generation_stable_asset_object_id,
editor_generation_stable_resource_id,
};
pub mod external_generation;
pub mod game_creation_app;
pub mod game_distribution;
pub mod hyper3d;
pub mod llm;
#[cfg(any())]
pub mod public_work;
#[cfg(any())]
pub mod puzzle_agent;
#[cfg(any())]
pub mod puzzle_clear;
#[cfg(any())]
pub mod puzzle_creative_template;
#[cfg(any())]
pub mod puzzle_gallery;
#[cfg(any())]
pub mod puzzle_runtime;
#[cfg(any())]
pub mod puzzle_works;
pub mod runtime;
#[cfg(any())]
pub mod runtime_story;
#[cfg(any())]
pub mod square_hole_agent;
#[cfg(any())]
pub mod square_hole_runtime;
#[cfg(any())]
pub mod square_hole_works;
#[cfg(any())]
pub mod story;
#[cfg(any())]
pub mod visual_novel;
#[cfg(any())]
pub mod wooden_fish;