6 lines
130 B
Rust
6 lines
130 B
Rust
pub fn current_time() -> String {
|
|
simpledateformat::fmt("yyyyMMdd'T'HHmmssz")
|
|
.unwrap()
|
|
.format_local_now()
|
|
}
|