Format code

This commit is contained in:
2022-04-03 15:50:49 +02:00
parent 9236b91f12
commit b965fa6b4f
20 changed files with 149 additions and 106 deletions

View File

@ -1,2 +1,2 @@
use std::error::Error;
pub type Res<A = ()> = Result<A, Box<dyn Error>>;
pub type Res<A = ()> = Result<A, Box<dyn Error>>;

View File

@ -1,2 +1,2 @@
pub mod err;
pub mod time;
pub mod time;

View File

@ -2,5 +2,8 @@ use std::time::{SystemTime, UNIX_EPOCH};
/// Get the current time since epoch
pub fn time() -> u64 {
SystemTime::now().duration_since(UNIX_EPOCH).unwrap().as_secs()
}
SystemTime::now()
.duration_since(UNIX_EPOCH)
.unwrap()
.as_secs()
}