lodestone_core/parse.rs
1/* This Source Code Form is subject to the terms of the Mozilla Public
2License, v. 2.0. If a copy of the MPL was not distributed with this
3file, You can obtain one at https://mozilla.org/MPL/2.0/.
4Copyright 2021 Peter Dunne */
5
6//! Routines for reading simulation input files, writing result files, and
7//! command line argument configuration
8//!
9// mod demo;
10mod read_config;
11mod write_config;
12
13pub use read_config::*;
14pub use write_config::*;