summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs16
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!()}
+
+