From f0986d7d545b5b9eda3ac1698de1fec25ed09ec9 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sun, 22 Oct 2023 19:11:13 -0400 Subject: [PATCH] Updates --- internal/provider/provider.go | 4 +--- main.go | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/internal/provider/provider.go b/internal/provider/provider.go index 1ab43ee..a404184 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -120,9 +120,7 @@ func (p *ScaffoldingProvider) Resources(ctx context.Context) []func() resource.R } func (p *ScaffoldingProvider) DataSources(ctx context.Context) []func() datasource.DataSource { - return []func() datasource.DataSource{ - NewVirtfusionDataSource, - } + return []func() datasource.DataSource{} } type CustomTransport struct { diff --git a/main.go b/main.go index 036c216..eb6c1a2 100644 --- a/main.go +++ b/main.go @@ -26,7 +26,7 @@ import ( var ( // these will be set by the goreleaser configuration // to appropriate values for the compiled binary. - version string = "dev" + version string = "0.0.2-dev" // goreleaser can pass other information to the main package, such as the specific commit // https://goreleaser.com/cookbooks/using-main.version/