From 4aab7b2f264806c49d883673bb3513d5c4861669 Mon Sep 17 00:00:00 2001 From: Donatas <49225672+fliepeltje@users.noreply.github.com> Date: Wed, 31 Jul 2024 10:47:42 +0200 Subject: [PATCH] Update app.py --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 752e94c..736ac77 100644 --- a/app.py +++ b/app.py @@ -1,7 +1,7 @@ from fastapi import FastAPI -app = FastAPI(port=8080) +app = FastAPI() @app.get("/") def index(): - return {"message": "Hello, World!"} \ No newline at end of file + return {"message": "Hello, World!"}