mirror of https://github.com/pulumi/pulumi.git
12 lines
150 B
Go
12 lines
150 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
pulumi.Run(func(ctx *pulumi.Context) error {
|
||
|
return nil
|
||
|
})
|
||
|
}
|