1
2
3
4
5
6
7
8
9
//! # medusa
//!
//! `medusa` is a general template for building
//! command line interface (CLI) using Rust

mod core;

pub use crate::core::command_line::CommandLine;
pub use crate::core::handler::{ArgType, Handler, Variant};