Started gigasecond
This commit is contained in:
parent
5f9cd49d7a
commit
3460dbca86
1 changed files with 3 additions and 4 deletions
|
@ -1,8 +1,7 @@
|
|||
extern crate chrono;
|
||||
use chrono::*;
|
||||
use chrono::UTC;
|
||||
|
||||
pub fn after(date: Option<&UTC>) -> UTC {
|
||||
let mut lived_for_date: UTC;
|
||||
|
||||
pub fn after(input_date: UTC) -> UTC {
|
||||
let utc: lived_for_date = input_date + Duration::seconds(1_000_000_000);
|
||||
return lived_for_date;
|
||||
}
|
Loading…
Add table
Reference in a new issue