split temp client

This commit is contained in:
filipriec
2025-02-23 09:28:41 +01:00
parent 2c4b69d406
commit f83f401ff1
11 changed files with 49 additions and 11 deletions

View File

@@ -1,3 +1,10 @@
fn main() {
println!("Client is running!");
// client/src/main.rs
use client::run_ui;
use dotenvy::dotenv;
use std::error::Error;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
dotenv().ok();
run_ui().await
}