libscilo/config/instantiated_config/mod.rs
1//! Creating and using the internal representation of all the important files, directories, and lints to check.
2//!
3//! Most importantly, this module re-exports the [`InstantiatedConfig`] struct, and collects methods, helper functions, and trait implementations.
4//! The submodules of this module are designed to prevent any individual field from becoming too large.
5
6mod cfg_struct;
7mod defaults;
8mod lints;
9mod try_from;
10
11pub use cfg_struct::InstantiatedConfig;