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-11-04 17:47:39 +08:00

14 lines
209 B
Go

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