file_parser/lib.rs
1// === MODULE DEFINITION ===
2// ModKit needs access to the module struct for instantiation
3#![cfg_attr(coverage_nightly, feature(coverage_attribute))]
4pub mod module;
5pub use module::FileParserModule;
6
7// === INTERNAL MODULES ===
8// WARNING: These modules are internal implementation details!
9// They are exposed only for comprehensive testing and should NOT be used by external consumers.
10#[doc(hidden)]
11pub mod api;
12#[doc(hidden)]
13pub mod config;
14#[doc(hidden)]
15pub mod domain;
16#[doc(hidden)]
17pub mod infra;