1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#![feature(custom_derive)]
extern crate jack_sys;
extern crate libc;

pub mod jack_client;
pub mod jack_port;
pub mod jack_callbacks;
pub mod error;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
    }
}