summaryrefslogtreecommitdiff
path: root/makima/src/main.rs
blob: 8b4845dba54096b5940c6d69f0524503289de94c (plain) (blame)
1
2
3
4
5
6
mod listen;

fn main() {
    println!("Hello, world!");
    listen::listen().unwrap();
}