// pulumi-tfgen-dokploy generates the Pulumi package schema and language SDKs // from the bridged Dokploy Terraform provider. package main import ( "github.com/pulumi/pulumi-terraform-bridge/v3/pkg/pf/tfgen" dokploy "github.com/maxvojtkov/pulumi-dokploy/provider" "github.com/maxvojtkov/pulumi-dokploy/provider/pkg/version" ) func main() { tfgen.Main("dokploy", dokploy.Provider(version.Version)) }