Files
terraform-provider-bitbucket/main.go
2025-11-09 23:56:25 +01:00

14 lines
263 B
Go

package main
import (
"context"
"github.com/hashicorp/terraform-plugin-framework/providerserver"
)
func main() {
providerserver.Serve(context.Background(), NewProvider, providerserver.ServeOpts{
Address: "registry.terraform.io/ysoftdevs/bitbucket",
})
}