From 9b06f768abc43074187c4f7fb425aaf0c3596cf2 Mon Sep 17 00:00:00 2001 From: Rogee Date: Tue, 13 Jan 2026 17:39:37 +0800 Subject: [PATCH] chore: register queue command --- backend/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/main.go b/backend/main.go index 64d8744..30fab89 100644 --- a/backend/main.go +++ b/backend/main.go @@ -3,6 +3,7 @@ package main import ( "quyun/v2/app/commands/http" "quyun/v2/app/commands/migrate" + "quyun/v2/app/commands/queue" "quyun/v2/app/commands/seed" "quyun/v2/app/commands/storage_migrate" "quyun/v2/pkg/utils" @@ -34,6 +35,7 @@ func main() { atom.Name("v2"), http.Command(), migrate.Command(), + queue.Command(), seed.Command(), storage_migrate.Command(), }