pulumi/tests/integration/construct_component_methods/go
Ian Wahbe 62c7219e08 Fix files of the form go/go.mod
```sh
for f in $(fd go.mod); do
    if [[ $(basename $(dirname $f)) = go ]]; then
        rg v3.29.2-0.20220418135911-b31c5b136c6e $f
        if [[ "$?" = 0 ]]; then
            echo "Fixing $f"
            cd $(dirname $f)
            go mod edit -replace github.com/pulumi/pulumi/sdk/v3=../../../../sdk/ -require=github.com/pulumi/pulumi/sdk/v3@v3.37.0
            go mod tidy
            cd -
        fi
    fi
done
```
2022-07-29 16:35:44 +02:00
..
Pulumi.yaml [sdk/go] Support for calling methods (#7437) 2021-07-07 17:28:21 -07:00
go.mod Fix files of the form go/go.mod 2022-07-29 16:35:44 +02:00
go.sum Fix files of the form go/go.mod 2022-07-29 16:35:44 +02:00
main.go [sdk/go] Fix methods panic when marshaling `self` (#7604) 2021-07-22 05:28:46 -07:00