This commit is contained in:
2023-08-13 21:48:41 +01:00
commit 0024150376
14 changed files with 1875 additions and 0 deletions

14
src/main.rs Normal file
View File

@ -0,0 +1,14 @@
use std::net::SocketAddr;
#[tokio::main]
fn main() {
let app = Router::new().route("/", get(index));
let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
axum::Server::bind(&addr)
.serve()
}
async fn index() {
}