Corran commited on
Commit
b5c1368
·
verified ·
1 Parent(s): e6e3a40

Rename app.py to main.py

Browse files
Files changed (1) hide show
  1. app.py → main.py +1 -1
app.py → main.py RENAMED
@@ -4,7 +4,7 @@ import io
4
 
5
  app = FastAPI()
6
 
7
- @app.get("/endpoint")
8
  def run_notebook(fruits: str):
9
  fruit_list = fruits.split(",")
10
 
 
4
 
5
  app = FastAPI()
6
 
7
+ @app.get("/api")
8
  def run_notebook(fruits: str):
9
  fruit_list = fruits.split(",")
10