feat(provider): add teams data-source

Closes #13
This commit is contained in:
Julien Dessaux 2025-05-14 22:34:19 +02:00
parent b3d51bca03
commit c9449084fc
Signed by: adyxax
GPG key ID: F92E51B86E07177E
6 changed files with 232 additions and 0 deletions

View file

@ -81,6 +81,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{
NewOrganizationsDataSource,
NewTeamsDataSource,
NewUsersDataSource,
}
}