mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 06:47:20 +08:00
12 lines
174 B
Go
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()
|
|
}
|