aboutsummaryrefslogblamecommitdiff
path: root/src/main.rs
blob: cdc2322bf55d4731a13cbeab8d81cbd92b0aa482 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                           
mod itfile;
mod midifile;
mod convert;
mod utils;

fn main() -> Result<(), itfile::Error> {
  match itfile::load("/home/chrisoft/Music/mods/rr_exp.it")
  {
    Ok(f) =>
    {
      let mut conv = convert::Converter::new(&f);
      conv.convert();
      Ok(())
    }
    Err(e) => Err(e)
  }
}