Skip to content

Commit 63d0586

Browse files
adding home route to facilitate active monitoring
1 parent 028fc02 commit 63d0586

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

app.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ async def read_top_stocks():
3333
stock_info = get_top_stocks(stock)
3434
return stock_info
3535

36+
@app.get("/")
37+
def read_root():
38+
return {"message": "Welcome to Investo!"}
3639

3740
@app.get("/chat")
3841
def chat(query: str):

0 commit comments

Comments
 (0)