init project

This commit is contained in:
behrooz
2025-12-01 19:38:12 +03:30
commit 2c614fcab2
8 changed files with 593 additions and 0 deletions

13
main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import (
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
)
func main() {
plugin.Serve(&plugin.ServeOpts{
ProviderFunc: Provider,
})
}