2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 03:07:20 +08:00
Files
panel/internal/bootstrap/queue.go
2024-10-12 00:58:55 +08:00

14 lines
208 B
Go

package bootstrap
import (
"context"
"github.com/TheTNB/panel/internal/app"
"github.com/TheTNB/panel/pkg/queue"
)
func initQueue() {
app.Queue = queue.New(40)
go app.Queue.Run(context.Background())
}