mirror of
https://github.com/chmln/sd
synced 2024-11-22 19:23:08 +00:00
13 lines
220 B
Rust
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))
|
|
}
|