aboutsummaryrefslogtreecommitdiff
path: root/src/context.rs
blob: 66267148f9ee96c4c6a8549b67b6ce7d61a7e36e (plain)
1
2
3
4
5
6
7
8

use chrono::naive::date::NaiveDate;
use chrono::offset::fixed::FixedOffset;

pub struct Context {
    pub timezone: FixedOffset,
    pub override_date: NaiveDate
}