blob: 08d71d30d2bc135826b3462a74e1497fb770db66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#![feature(associated_consts)]
extern crate byteorder;
pub mod types;
pub use types::*;
pub mod synth;
pub mod proto;
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
}
}
|