Skip to content

Commit

Permalink
uggh
Browse files Browse the repository at this point in the history
  • Loading branch information
megastary committed Apr 23, 2023
1 parent 13b0775 commit 70a670e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
uses: actions/[email protected]
with:
name: jokkit-backend
path: /backend/target/release/jokkit-backend.exe
path: backend/target/release/jokkit-backend.exe
4 changes: 3 additions & 1 deletion backend/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ use axum::{routing::get, Router};
async fn main() {
let app = Router::new().route(
"/",
get(|| async { "Hello, world! This is Jokkit. This time for sure! We will delete this!" }),
get(|| async {
"Hello, world! This is Jokkit. This time for sure! We will delete this! Getting old.."
}),
);

axum::Server::bind(&"0.0.0.0:3000".parse().unwrap())
Expand Down

0 comments on commit 70a670e

Please sign in to comment.