aboutsummaryrefslogtreecommitdiff
path: root/src/context.rs
blob: c24dd14dfd948fb4ce3b901e726c33b75149960d (plain)
1
2
3
4
5
6
7
8
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
}