diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..06e4243 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,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!()} + + |