aboutsummaryrefslogtreecommitdiff
path: root/mingling/src/gen_program.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-08-14 17:47:15 +0800
committer魏曹先生 <1992414357@qq.com>2026-08-14 18:02:09 +0800
commit9c8fe13c2629a4318bd12815c07cef1371ba85a2 (patch)
tree9e9af625832a1f872f5523dbf9d9730af0ef90c8 /mingling/src/gen_program.rs
parentf3c134615c56dc7372e47a216dddca72250a3308 (diff)
feat(core): move config types to public config module
Refactor program configuration types into a dedicated public `config` module under `mingling_core`, making `StructuralRendererSetting` accessible via `mingling_core::config` instead of the crate root. Update all internal references and setup modules to use the new `config::` path convention.
Diffstat (limited to 'mingling/src/gen_program.rs')
-rw-r--r--mingling/src/gen_program.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mingling/src/gen_program.rs b/mingling/src/gen_program.rs
index fbced64..6a0b144 100644
--- a/mingling/src/gen_program.rs
+++ b/mingling/src/gen_program.rs
@@ -253,7 +253,7 @@ impl ProgramCollect for ThisProgram {
#[cfg(feature = "structural_renderer")]
fn structural_render(
_any: mingling_core::AnyOutput<Self::Enum>,
- _setting: &mingling_core::StructuralRendererSetting,
+ _setting: &mingling_core::config::StructuralRendererSetting,
) -> Result<mingling_core::RenderResult, mingling_core::error::StructuralRendererSerializeError>
{
todo!()