mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-07-15 12:01:59 -04:00
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
21 lines
507 B
Go
21 lines
507 B
Go
// Copyright IBM Corp. 2010, 2025
|
|
// 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"),
|
|
}
|