cargo fmt + syntax error

This commit is contained in:
Akshat Deshpande 2023-07-27 14:57:44 -05:00
parent 3273af8ea7
commit 681e83646b
4 changed files with 7 additions and 6 deletions

View file

@ -9,7 +9,11 @@ lazy_static! {
};
}
use std::{io::{BufWriter, Write}, fs::File, sync::Mutex};
use std::{
fs::File,
io::{BufWriter, Write},
sync::Mutex,
};
pub fn log(entry: &str) {
let mut log = LOG_FILE.lock().unwrap();

View file

@ -1 +1 @@
pub mod logger;
pub mod logger;

View file

@ -8,5 +8,4 @@ impl InputBackend for Waycrab{}
&mut self,
callback: F) -> Result<(),InputBackend::EventError>{
}
}
}

View file

@ -1,5 +1,3 @@
mod backend;
fn main() {