From 7b44559f507fe66cc53b6685d5912e0a6c321ee4 Mon Sep 17 00:00:00 2001 From: Thomas Kappler Date: Wed, 17 Apr 2024 11:40:02 +0200 Subject: [PATCH] Move openapipulschema out of infer --- examples/openapipulschema/go.mod | 2 +- examples/openapipulschema/go.sum | 4 ++-- examples/openapipulschema/provider.go | 2 +- {infer/openapipulschema => openapipulschema}/provider.go | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename {infer/openapipulschema => openapipulschema}/provider.go (100%) diff --git a/examples/openapipulschema/go.mod b/examples/openapipulschema/go.mod index 9a54dec8..74c6db9a 100644 --- a/examples/openapipulschema/go.mod +++ b/examples/openapipulschema/go.mod @@ -170,7 +170,7 @@ require ( golang.org/x/crypto v0.21.0 // indirect golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect golang.org/x/mod v0.15.0 // indirect - golang.org/x/net v0.21.0 // indirect + golang.org/x/net v0.23.0 // indirect golang.org/x/oauth2 v0.17.0 // indirect golang.org/x/sync v0.6.0 // indirect golang.org/x/sys v0.18.0 // indirect diff --git a/examples/openapipulschema/go.sum b/examples/openapipulschema/go.sum index 29a726f2..b67f886d 100644 --- a/examples/openapipulschema/go.sum +++ b/examples/openapipulschema/go.sum @@ -506,8 +506,8 @@ golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= golang.org/x/net v0.20.0/go.mod h1:z8BVo6PvndSri0LbOE3hAn0apkU+1YvI6E70E9jsnvY= -golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4= -golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= +golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= +golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.17.0 h1:6m3ZPmLEFdVxKKWnKq4VqZ60gutO35zm+zrAHVmHyDQ= golang.org/x/oauth2 v0.17.0/go.mod h1:OzPDGQiuQMguemayvdylqddI7qcD9lnSDb+1FiwQ5HA= diff --git a/examples/openapipulschema/provider.go b/examples/openapipulschema/provider.go index e0966b14..73df0318 100644 --- a/examples/openapipulschema/provider.go +++ b/examples/openapipulschema/provider.go @@ -6,8 +6,8 @@ import ( "os" p "github.com/pulumi/pulumi-go-provider" - "github.com/pulumi/pulumi-go-provider/infer/openapipulschema" "github.com/pulumi/pulumi-go-provider/middleware/schema" + "github.com/pulumi/pulumi-go-provider/openapipulschema" ) const ( diff --git a/infer/openapipulschema/provider.go b/openapipulschema/provider.go similarity index 100% rename from infer/openapipulschema/provider.go rename to openapipulschema/provider.go