2022-09-14 03:02:19 +00:00
|
|
|
//go:build !all
|
|
|
|
// +build !all
|
|
|
|
|
2022-09-06 23:44:29 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
pulumi.Run(func(ctx *pulumi.Context) error {
|
|
|
|
return fmt.Errorf("hello world")
|
|
|
|
})
|
|
|
|
}
|