mirror of
https://github.com/acepanel/panel.git
synced 2026-02-03 22:22:45 +08:00
10 lines
126 B
Go
10 lines
126 B
Go
package bootstrap
|
|
|
|
import (
|
|
"github.com/tnb-labs/panel/pkg/queue"
|
|
)
|
|
|
|
func NewQueue() *queue.Queue {
|
|
return queue.New(100)
|
|
}
|