# retoor from devplacepy.routers.admin import ( awards, aiquota, aiusage, auditlog, backups, bots, containers, gateway_configs, issues, media, news, notifications, services, settings, statistics, trash, users, ) from devplacepy.routers.admin.index import router router.include_router(awards.router) router.include_router(users.router) router.include_router(aiusage.router) router.include_router(statistics.router) router.include_router(aiquota.router) router.include_router(media.router) router.include_router(trash.router) router.include_router(settings.router) router.include_router(notifications.router) router.include_router(news.router) router.include_router(issues.router) router.include_router(auditlog.router) router.include_router(backups.router) router.include_router(bots.router) router.include_router(gateway_configs.router) router.include_router(services.router, prefix="/services") router.include_router(containers.router, prefix="/containers")