feat(provider): add users data-source

This commit is contained in:
Julien Dessaux 2025-05-08 23:54:51 +02:00
parent 349b11254d
commit 80fb21068f
Signed by: adyxax
GPG key ID: F92E51B86E07177E
8 changed files with 337 additions and 2 deletions

View file

@ -79,5 +79,7 @@ func (p *Provider) Resources(ctx context.Context) []func() resource.Resource {
}
func (p *Provider) DataSources(ctx context.Context) []func() datasource.DataSource {
return []func() datasource.DataSource{}
return []func() datasource.DataSource{
NewUsersDataSource,
}
}