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-09-18 19:08:45 +08:00

12 lines
180 B
Go

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