From a44dde68f4f21e0540154852ff02cff0d5e31f14 Mon Sep 17 00:00:00 2001 From: Dustin Strobel Date: Tue, 13 Feb 2024 19:44:08 +0100 Subject: [PATCH] fix: local_users datasource unused variable --- internal/provider/local/local_users_data_source.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/internal/provider/local/local_users_data_source.go b/internal/provider/local/local_users_data_source.go index 44c064e..8ba135e 100644 --- a/internal/provider/local/local_users_data_source.go +++ b/internal/provider/local/local_users_data_source.go @@ -21,10 +21,6 @@ type localUsersDataSource struct { client *gowindows.Client } -type localUsersDataSourceModel struct { - Id types.String `tfsdk:"id"` -} - func (d *localUsersDataSource) Metadata(ctx context.Context, req datasource.MetadataRequest, resp *datasource.MetadataResponse) { resp.TypeName = req.ProviderTypeName + "_local_users" }