yuexclusive_foo 0.1.1

A short description of my package
Documentation
1
2
3
4
5
use chrono::prelude::*;
pub fn log(str:&str){
    let now = Local::now().format("%Y-%m-%d %H:%M:%S").to_string();
    println!("time: {}, log: {}",now, str);
}