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