Files
panel/internal/bootstrap/queue.go
T
2025-09-18 23:24:03 +08:00

10 lines
126 B
Go

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