cf-file-parser 0.1.23

File Parser module
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// === MODULE DEFINITION ===
// ModKit needs access to the module struct for instantiation
#![cfg_attr(coverage_nightly, feature(coverage_attribute))]
pub mod module;
pub use module::FileParserModule;

// === INTERNAL MODULES ===
// WARNING: These modules are internal implementation details!
// They are exposed only for comprehensive testing and should NOT be used by external consumers.
#[doc(hidden)]
pub mod api;
#[doc(hidden)]
pub mod config;
#[doc(hidden)]
pub mod domain;
#[doc(hidden)]
pub mod infra;