Rename filedownloader -> httpdownloader

This commit is contained in:
sophia 2022-05-26 14:54:58 -05:00
parent 09f92f5ce9
commit 1af502ee9f
2 changed files with 4 additions and 4 deletions

View File

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