total-recall 0.3.0

Application with GUI for keeping a to-do list.
1
2
3
4
5
6
7
8
#![windows_subsystem = "windows"]
mod app;
mod psql;

fn main() {
    psql::postgres::create_todo_table();
    app::todo_app::gui();
}