pushed some non functioning code

This commit is contained in:
Jonas_Jones 2022-09-04 23:28:01 +02:00
parent 8d85068b48
commit c60e0db035
14 changed files with 2364 additions and 11 deletions

View file

@ -1,3 +1,18 @@
//import ui
mod ui;
pub(crate) mod confighandler;
pub(crate) mod defaultconfigs;
use defaultconfigs::VERSION;
use log::{info};
fn main() {
println!("Hello, world!");
}
info!(target: "[THREAD-MAIN]", "Welcome to PI-Server-Rack v{} !", VERSION);
//initialize config
confighandler::init();
//initialiaze ui
ui::mainloop();
}