qualia_client_core/chora/mod.rs
1//! Chora — the spatio-temporal commons canvas inside **WellFair** (Peace Infrastructure).
2//!
3//! WellFair is the rights-grounded personal vault and host shell; Chora is one area within it
4//! (not a replacement for WellFair). Canvas state is reached via [`crate::wellfair::api::WebizenHostApi`].
5
6pub mod api;
7pub mod asset_pipeline;
8pub mod flagship_worlds;
9pub mod layers;
10
11pub use crate::canvas_state;
12pub use crate::canvas_store;
13pub use crate::canvas_world;
14
15pub use flagship_worlds::{
16 all_flagship_worlds, biosphere_world, council_world, glam_world, history_world, sdg_world,
17 seed_all_flagships,
18};