summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 06e4243caa045ebc46111366927bfffceccce724 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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<String> = Vec::new();
    if test.len() == 0 {}

    //Server::bind(([0, 0, 0, 0], 8000u16)).serve().await.expect("failed to start server");
}

async fn hello() { todo!()}