mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2026-08-03 01:43:48 -04:00
20 lines
386 B
Go
Executable File
20 lines
386 B
Go
Executable File
package dev
|
|
|
|
import (
|
|
"github.com/bitmagnet-io/bitmagnet/internal/plugin/builder"
|
|
"github.com/bitmagnet-io/bitmagnet/internal/ref"
|
|
"github.com/bitmagnet-io/bitmagnet/pkg/plugin"
|
|
)
|
|
|
|
type deps struct{}
|
|
|
|
var (
|
|
Ref = ref.Root.MustSub("dev")
|
|
|
|
Plugin = builder.NewPlugin(
|
|
Ref,
|
|
builder.WithActivation[deps](plugin.ActivationAlways),
|
|
builder.WithCliCommand[deps](NewCommand()),
|
|
)
|
|
)
|