2022-06-08 10:30:46 -05:00

16 lines
400 B
Go

package filedownloader
import (
sdk "github.com/hashicorp/vagrant-plugin-sdk"
"github.com/hashicorp/vagrant/builtin/filedownloader/downloader"
)
//go:generate protoc -I ../../.. --go_opt=plugins=grpc --go_out=../../.. vagrant-ruby/builtin/filedownloader/proto/plugin.proto
var PluginOptions = []sdk.Option{
sdk.WithComponents(
&downloader.Downloader{},
),
sdk.WithName("filedownloader"),
}