Files
panel/internal/bootstrap/queue.go
T
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())
}