22 lines
506 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package otherplugin
import (
sdk "github.com/hashicorp/vagrant-plugin-sdk"
"github.com/hashicorp/vagrant-plugin-sdk/component"
"github.com/hashicorp/vagrant/builtin/otherplugin/guest"
)
var CommandOptions = []sdk.Option{
sdk.WithComponents(
&guest.AlwaysTrueGuest{},
),
sdk.WithComponent(&Command{}, &component.CommandOptions{
// Hide command from default help output
Primary: false,
}),
sdk.WithName("otherplugin"),
}