chore(backend): upgrade deps and remove redis/rq

This commit is contained in:
Abhimanyu Saharan
2026-02-10 16:05:49 +05:30
parent dcdc0a25b1
commit 5c25c4bb91
17 changed files with 538 additions and 439 deletions

View File

@@ -18,7 +18,7 @@ async def run() -> None:
from app.models.boards import Board
from app.models.gateways import Gateway
from app.models.users import User
from app.services.openclaw import GatewayAgentIdentity
from app.services.openclaw.shared import GatewayAgentIdentity
await init_db()
async with async_session_maker() as session:

View File

@@ -52,7 +52,10 @@ def _parse_args() -> argparse.Namespace:
async def _run() -> int:
from app.db.session import async_session_maker
from app.models.gateways import Gateway
from app.services.openclaw import GatewayTemplateSyncOptions, sync_gateway_templates
from app.services.openclaw.provisioning import (
GatewayTemplateSyncOptions,
sync_gateway_templates,
)
args = _parse_args()
gateway_id = UUID(args.gateway_id)