2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 06:47:20 +08:00
Files
panel/internal/bootstrap/queue.go
2024-09-30 17:52:23 +08:00

12 lines
174 B
Go

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