chore: register queue command

This commit is contained in:
2026-01-13 17:39:37 +08:00
parent 0f7843bcac
commit 9b06f768ab

View File

@@ -3,6 +3,7 @@ package main
import ( import (
"quyun/v2/app/commands/http" "quyun/v2/app/commands/http"
"quyun/v2/app/commands/migrate" "quyun/v2/app/commands/migrate"
"quyun/v2/app/commands/queue"
"quyun/v2/app/commands/seed" "quyun/v2/app/commands/seed"
"quyun/v2/app/commands/storage_migrate" "quyun/v2/app/commands/storage_migrate"
"quyun/v2/pkg/utils" "quyun/v2/pkg/utils"
@@ -34,6 +35,7 @@ func main() {
atom.Name("v2"), atom.Name("v2"),
http.Command(), http.Command(),
migrate.Command(), migrate.Command(),
queue.Command(),
seed.Command(), seed.Command(),
storage_migrate.Command(), storage_migrate.Command(),
} }