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(); }