20 lines
608 B
Rust
20 lines
608 B
Rust
//! Re-exports from `zesdex-entities` crate under the original module paths,
|
|
//! plus local sub-modules (agent_def, msglog) that weren't extracted.
|
|
|
|
// Module re-exports matching original `crate::model::*` paths
|
|
pub mod app_config {
|
|
pub use zesdex_entities::seaorm::common::app_config::*;
|
|
}
|
|
pub mod store {
|
|
pub use zesdex_entities::seaorm::common::store::*;
|
|
}
|
|
pub mod editlog {
|
|
pub use zesdex_entities::seaorm::common::edit_log::*;
|
|
}
|
|
pub mod memory {
|
|
pub use zesdex_entities::seaorm::common::memory::*;
|
|
}
|
|
/// Local modules not extracted to workspace crates
|
|
pub mod msglog;
|
|
pub mod agent_def;
|