2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 11:27:17 +08:00
Files
panel/internal/bootstrap/queue.go
2025-07-23 04:50:25 +08:00

10 lines
124 B
Go

package bootstrap
import (
"github.com/tnborg/panel/pkg/queue"
)
func NewQueue() *queue.Queue {
return queue.New(100)
}