mirror of
https://github.com/ysoftdevs/terraform-provider-bitbucketserver.git
synced 2026-01-17 00:57:29 +01:00
12 lines
224 B
Go
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})
|
|
}
|