You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/*
|
|
|
|
TU - Time's Up!
|
|
|
|
Copyright (C) 2020 Julio Biason
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
mod args;
|
|
|
|
mod eventlist;
|
|
|
|
|
|
|
|
use crate::eventlist::event::Event;
|
|
|
|
use crate::eventlist::eventlist::EventList;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
if let Ok(command) = dbg!(args::parse()) {
|
|
|
|
match command {
|
|
|
|
args::Action::List => list(),
|
|
|
|
args::Action::Add(description, date) => add_with_date(&description, &date),
|
|
|
|
_ => println!("Unknown command"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn list() {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn add_with_date(description: &str, date: &str) {
|
|
|
|
let event = Event::new_on_date(description, date);
|
|
|
|
let mut event_list = dbg!(EventList::load());
|
|
|
|
event_list.push(event);
|
|
|
|
event_list.save();
|
|
|
|
}
|