13 lines
186 B
Go
13 lines
186 B
Go
package otherplugin
|
|
|
|
import (
|
|
sdk "github.com/hashicorp/vagrant-plugin-sdk"
|
|
)
|
|
|
|
var CommandOptions = []sdk.Option{
|
|
sdk.WithComponents(
|
|
&Command{},
|
|
),
|
|
sdk.WithName("otherplugin"),
|
|
}
|