This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
md-pdf-rs/src/main.rs

12 lines
108 B
Rust
Raw Normal View History

2017-07-12 14:01:52 +01:00
#[macro_use]
extern crate clap;
mod args;
2017-07-12 14:40:25 +01:00
#[cfg(test)]
mod tests;
2017-07-01 21:10:25 +01:00
fn main() {
2017-07-13 09:14:16 +01:00
args::get_matches();
2017-07-01 21:10:25 +01:00
}