mirror of https://github.com/pulumi/pulumi.git
12 lines
303 B
Python
12 lines
303 B
Python
# Copyright 2016-2024, Pulumi Corporation. All rights reserved.
|
|
|
|
import pulumi
|
|
|
|
class MyComponent(pulumi.ComponentResource):
|
|
def __init__(self, name, opts=None):
|
|
super().__init__("test:index:MyComponent", name, {}, opts)
|
|
|
|
pulumi.log.debug("A debug message")
|
|
|
|
c = MyComponent("mycomponent")
|