sd/src/main.rs
2018-12-23 16:16:02 -05:00

13 lines
220 B
Rust

mod app;
mod error;
mod input;
pub(crate) mod utils;
pub(crate) use {
crate::error::Error,
crate::input::{Source, Stream},
};
fn main() -> Result<(), ()> {
app::App::run().map_err(|e| eprintln!("{}", e))
}