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