zhzluke96
update
01e655b
raw
history blame
No virus
368 Bytes
from modules.data import styles_mgr
from modules.api import utils as api_utils
from modules.api.Api import APIManager
async def list_styles():
return {"message": "ok", "data": styles_mgr.list_items()}
async def create_style():
# TODO
pass
def setup(app: APIManager):
app.get("/v1/styles/list", response_model=api_utils.BaseResponse)(list_styles)