Documentation
1
2
3
4
5
6
7
8
9
#![doc = include_str!("../README.md")]

pub mod config;

pub use config::{MyConfig, MyCommand, print_help_info};

pub mod runner;

pub use runner::{run};