use axum::Router; use axum::routing::get; use axum::Server; #[tokio::main] async fn main() { //let app = Router::new().route("/", get(hello)); let test: Vec = Vec::new(); if test.len() == 0 {} //Server::bind(([0, 0, 0, 0], 8000u16)).serve().await.expect("failed to start server"); } async fn hello() { todo!()}