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

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

pub struct Context {
    pub timezone: FixedOffset,
    pub override_date: Option<NaiveDate>,
    pub channel: Option<String>
}