浏览代码

chore: formatting

Timothy J. Baek 1 年之前
父节点
当前提交
295472fca1
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      backend/main.py

+ 2 - 0
backend/main.py

@@ -288,6 +288,7 @@ async def get_app_latest_release_version():
             detail=ERROR_MESSAGES.RATE_LIMIT_EXCEEDED,
             detail=ERROR_MESSAGES.RATE_LIMIT_EXCEEDED,
         )
         )
 
 
+
 @app.get("/manifest.json")
 @app.get("/manifest.json")
 async def get_manifest_json():
 async def get_manifest_json():
     return {
     return {
@@ -301,6 +302,7 @@ async def get_manifest_json():
         "icons": [{"src": "/favicon.png", "type": "image/png", "sizes": "844x884"}],
         "icons": [{"src": "/favicon.png", "type": "image/png", "sizes": "844x884"}],
     }
     }
 
 
+
 app.mount("/static", StaticFiles(directory=STATIC_DIR), name="static")
 app.mount("/static", StaticFiles(directory=STATIC_DIR), name="static")
 app.mount("/cache", StaticFiles(directory=CACHE_DIR), name="cache")
 app.mount("/cache", StaticFiles(directory=CACHE_DIR), name="cache")