mirror of
https://github.com/JonasunderscoreJones/PI-server-rack.git
synced 2025-10-23 01:29:18 +02:00
pushed some non functioning code
This commit is contained in:
parent
8d85068b48
commit
c60e0db035
14 changed files with 2364 additions and 11 deletions
|
@ -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();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue