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
2025-01-01 15:33:47 +08:00

10 lines
126 B
Go

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