21 lines
976 B
Python
21 lines
976 B
Python
# from modules.app import app, get_api_key
|
|
# from modules.utils import configGet, jsonLoad
|
|
# from fastapi import HTTPException, Depends
|
|
# from fastapi.responses import UJSONResponse, FileResponse
|
|
# from fastapi.openapi.models import APIKey
|
|
|
|
# @app.get("/devices", response_class=UJSONResponse, description="Get all devices")
|
|
# async def devices_get(apikey: APIKey = Depends(get_api_key)):
|
|
# pass
|
|
|
|
# @app.get("/devices/{name}", response_class=UJSONResponse, description="Get game saves from device by name")
|
|
# async def devices_get_by_name(name: str, apikey: APIKey = Depends(get_api_key)):
|
|
# pass
|
|
|
|
# @app.post("/devices", response_class=UJSONResponse, description="Create new device")
|
|
# async def devices_post(name: str, apikey: APIKey = Depends(get_api_key)):
|
|
# pass
|
|
|
|
# @app.put("/devices/{name}", response_class=UJSONResponse, description="Update name of the existing device")
|
|
# async def devices_put(name: str, apikey: APIKey = Depends(get_api_key)):
|
|
# pass |