From 19a778d004de584a09fa1d4c6c4bd8803ca80048 Mon Sep 17 00:00:00 2001 From: Till Hoeppner Date: Thu, 11 Jun 2015 12:39:45 +0200 Subject: Some inbetween state of confusion --- src/context.rs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/context.rs (limited to 'src/context.rs') diff --git a/src/context.rs b/src/context.rs new file mode 100644 index 0000000..c24dd14 --- /dev/null +++ b/src/context.rs @@ -0,0 +1,9 @@ + +use chrono::date::Date; +use chrono::naive::date::NaiveDate; +use chrono::offset::fixed::FixedOffset; + +pub struct Context { + pub timezone: FixedOffset, + pub override_date: NaiveDate +} -- cgit v1.2.3 From ccc9f5e8eaa84579da610ea0d90d18596078bac7 Mon Sep 17 00:00:00 2001 From: Till Hoeppner Date: Thu, 11 Jun 2015 20:56:59 +0200 Subject: Fix binaries and eliminate warnings --- src/context.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/context.rs') diff --git a/src/context.rs b/src/context.rs index c24dd14..6626714 100644 --- a/src/context.rs +++ b/src/context.rs @@ -1,5 +1,4 @@ -use chrono::date::Date; use chrono::naive::date::NaiveDate; use chrono::offset::fixed::FixedOffset; -- cgit v1.2.3