mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2026-07-30 16:03:43 -04:00
12 lines
270 B
Go
12 lines
270 B
Go
package queue
|
|
|
|
import "github.com/bitmagnet-io/bitmagnet/internal/config/param"
|
|
|
|
type Autostart bool
|
|
|
|
var ParamAutostart = param.MustNew(
|
|
param.Description[Autostart]("Start the queue worker automatically"),
|
|
param.Bool[Autostart](),
|
|
param.Default(Autostart(true)),
|
|
)
|