HibiAPI / hibiapi /app /routes /wallpaper.py
DengFengLai's picture
DF.
0a1b571
raw
history blame contribute delete
268 Bytes
from hibiapi.api.wallpaper import Config, NetRequest, WallpaperEndpoint
from hibiapi.utils.routing import EndpointRouter
__mount__, __config__ = "wallpaper", Config
router = EndpointRouter(tags=["Wallpaper"])
router.include_endpoint(WallpaperEndpoint, NetRequest())