add source code

This commit is contained in:
Preclikos
2025-11-06 11:18:51 +01:00
parent d36ba1cf37
commit 8958def89c
6 changed files with 485 additions and 1 deletions

13
main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import (
"context"
"github.com/hashicorp/terraform-plugin-framework/providerserver"
)
func main() {
providerserver.Serve(context.Background(), NewProvider, providerserver.ServeOpts{
Address: "local/bitbucket/token",
})
}