mirror of https://github.com/pulumi/pulumi.git
22 lines
438 B
Go
22 lines
438 B
Go
// Copyright 2016-2020, Pulumi Corporation. All rights reserved.
|
|
//go:build !all
|
|
// +build !all
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
|
|
)
|
|
|
|
// FooComponent is a component resource
|
|
type FooComponent struct {
|
|
pulumi.ResourceState
|
|
}
|
|
|
|
func main() {
|
|
pulumi.Run(func(ctx *pulumi.Context) error {
|
|
fooComponent := &FooComponent{}
|
|
return ctx.RegisterComponentResource("foo:component", "foo", fooComponent)
|
|
})
|
|
}
|