diff --git a/main.py b/main.py index 4cd1383..6356efa 100644 --- a/main.py +++ b/main.py @@ -55,6 +55,11 @@ async def handler(request): del request # unused return aiohttp.web.FileResponse('admin.html') +@routes.get('/favicon.ico') +async def handler(request): + del request # unused + return aiohttp.web.FileResponse('static/coin.png') + @routes.get('/') async def handler(request): diff --git a/static/coin.png b/static/coin.png new file mode 100644 index 0000000..9a0dda0 Binary files /dev/null and b/static/coin.png differ