Files
terraform-provider-bitbucke…/main.go
Gavin Bunney 1251ea9a0b Initial Commit
2019-10-08 10:12:21 -07:00

12 lines
224 B
Go

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