ruwebframe 0.1.0

A brief description of your crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use chrono::{DateTime, Local};

pub struct DateRange {
    start: DateTime<Local>,
    end: DateTime<Local>,
}

impl DateRange {
    pub fn new(start: DateTime<Local>, end: DateTime<Local>) -> DateRange {
        Self { start, end }
    }
    pub fn init(&self) {
        // self.start=DateTime
    }
}