17 lines
402 B
Go
17 lines
402 B
Go
package myplugin
|
|
|
|
import (
|
|
sdk "github.com/hashicorp/vagrant-plugin-sdk"
|
|
"github.com/hashicorp/vagrant/builtin/myplugin/commands"
|
|
)
|
|
|
|
//go:generate protoc -I ../../.. --go_opt=plugins=grpc --go_out=../../.. vagrant-ruby/builtin/myplugin/plugin.proto
|
|
|
|
// Options are the SDK options to use for instantiation.
|
|
var Options = []sdk.Option{
|
|
sdk.WithComponents(
|
|
&Provider{},
|
|
&commands.Command{},
|
|
),
|
|
}
|