save-sync/src/lib.rs

16 lines
189 B
Rust

#[macro_use]
extern crate diesel;
pub mod db;
pub mod game;
pub mod models;
pub mod schema;
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}