diff --git a/api.py b/api.py index 73859f3..f654e18 100644 --- a/api.py +++ b/api.py @@ -70,10 +70,15 @@ def expand(short: str): @app.get('/') -def get(): +def index(): return FileResponse('index.html') +@app.get('/favicon.ico') +def favicon(): + return FileResponse('favicon.ico') + + @app.put('/') def put(name: str | None = None, body: str = Body()): try: diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..6b86055 Binary files /dev/null and b/favicon.ico differ