nicehero commited on
Commit ·
704ab99
1
Parent(s): ce9a081
tg.html
Browse files
main.py
CHANGED
|
@@ -42,5 +42,5 @@ def index() -> FileResponse:
|
|
| 42 |
return FileResponse(path="/app/static/index.html", media_type="text/html")
|
| 43 |
|
| 44 |
@app.get("/tg")
|
| 45 |
-
def
|
| 46 |
return FileResponse(path="/app/static/tg.html", media_type="text/html")
|
|
|
|
| 42 |
return FileResponse(path="/app/static/index.html", media_type="text/html")
|
| 43 |
|
| 44 |
@app.get("/tg")
|
| 45 |
+
def tg() -> FileResponse:
|
| 46 |
return FileResponse(path="/app/static/tg.html", media_type="text/html")
|