summaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: feb315cb91027356b501e3b6c47dc951fd192660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
mod app;
mod error;
mod input;
pub(crate) mod utils;

pub(crate) use {
    crate::error::Error,
    crate::input::{Source, Stream},
};

fn main() -> Result<(), Error> {
    app::run()
}