summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 91befca0284f1c459498a3f3807228c5bf5494c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
extern crate rusty_microphone;

use rusty_microphone::*;

fn main() {
    let gui_result = gui::start_gui();
    if gui_result.is_err() {
        println!("Failed to initialize");
        return;
    }
}