mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 04:22:33 +08:00
14 lines
209 B
Go
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())
|
|
}
|