mirror of
https://github.com/ysoftdevs/terraform-provider-bitbucket.git
synced 2026-03-20 08:33:47 +01:00
14 lines
263 B
Go
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",
|
|
})
|
|
}
|