fix println type

This commit is contained in:
yggverse 2025-06-07 17:47:42 +03:00
parent eac6d0dc07
commit e9442334aa

View file

@ -3,7 +3,7 @@ pub fn error(e: &anyhow::Error) {
}
pub fn info(message: String) {
eprintln!("[{}] [info] {message}", now())
println!("[{}] [info] {message}", now())
}
fn now() -> u128 {