Update app.py
Browse files
app.py
CHANGED
@@ -32,6 +32,10 @@ app.add_middleware(
|
|
32 |
allow_headers=["*"],
|
33 |
)
|
34 |
|
|
|
|
|
|
|
|
|
35 |
|
36 |
@app.post('/classify')
|
37 |
async def main(
|
|
|
32 |
allow_headers=["*"],
|
33 |
)
|
34 |
|
35 |
+
@app.get("/")
|
36 |
+
async def read_index():
|
37 |
+
return "This is the index page"
|
38 |
+
|
39 |
|
40 |
@app.post('/classify')
|
41 |
async def main(
|