aboutsummaryrefslogtreecommitdiff
path: root/src/context.rs
diff options
context:
space:
mode:
authorTill Hoeppner2015-06-11 12:39:45 +0200
committerTill Hoeppner2015-06-11 12:39:45 +0200
commit19a778d004de584a09fa1d4c6c4bd8803ca80048 (patch)
tree71cba15b0e27c8a2a8a4a062e4f2ccfb3a5e2c9a /src/context.rs
parent86fe3230866082d6207eb5253f2e89623b941f63 (diff)
downloadilc-19a778d004de584a09fa1d4c6c4bd8803ca80048.tar.gz
ilc-19a778d004de584a09fa1d4c6c4bd8803ca80048.tar.xz
ilc-19a778d004de584a09fa1d4c6c4bd8803ca80048.zip
Some inbetween state of confusion
Diffstat (limited to 'src/context.rs')
-rw-r--r--src/context.rs9
1 files changed, 9 insertions, 0 deletions
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
+}