Files
terraform-provider-bitbucke…/main.go
xvlcwk 018f9785a3 [2][chore] Convert to independently publishable system
Update references to allow publishing this as an individual provider.ü
2024-01-12 13:12:36 +01:00

12 lines
229 B
Go

package main
import (
"github.com/hashicorp/terraform/plugin"
"github.com/xvlcwk-terraform/terraform-provider-bitbucketserver/bitbucket"
)
func main() {
plugin.Serve(&plugin.ServeOpts{
ProviderFunc: bitbucket.Provider})
}