randydev commited on
Commit
37277e2
·
verified ·
1 Parent(s): aea4c71

Update server.py

Browse files
Files changed (1) hide show
  1. server.py +1 -1
server.py CHANGED
@@ -4,7 +4,7 @@ from fastapi import FastAPI
4
 
5
  app = FastAPI()
6
 
7
- @app.get("/status")
8
  def hello():
9
  return {"message": "running"}
10
 
 
4
 
5
  app = FastAPI()
6
 
7
+ @app.get("/")
8
  def hello():
9
  return {"message": "running"}
10