vagrant/builtin/otherplugin/main.go
oss-core-libraries-dashboard[bot] 614fcb0549
[COMPLIANCE] Update Copyright and License Headers (Batch 1 of 7) (#13765)
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2025-12-22 16:38:56 +05:30

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"),
}