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!"}