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 (
"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(),
}