From 3460dbca863769d334c8c52f617c59183e78dd1f Mon Sep 17 00:00:00 2001 From: "anthony.cicchetti" Date: Tue, 25 Apr 2017 16:29:31 -0400 Subject: [PATCH] Started gigasecond --- rust/gigasecond/src/lib.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/rust/gigasecond/src/lib.rs b/rust/gigasecond/src/lib.rs index 454719a..f846dc9 100644 --- a/rust/gigasecond/src/lib.rs +++ b/rust/gigasecond/src/lib.rs @@ -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; } \ No newline at end of file