|
@@ -9,6 +9,10 @@ import (
|
|
"github.com/hashicorp/terraform-plugin-framework/types"
|
|
"github.com/hashicorp/terraform-plugin-framework/types"
|
|
)
|
|
)
|
|
|
|
|
|
|
|
+// Ensure provider defined types fully satisfy framework interfaces
|
|
|
|
+var _ tfsdk.DataSourceType = exampleDataSourceType{}
|
|
|
|
+var _ tfsdk.DataSource = exampleDataSource{}
|
|
|
|
+
|
|
type exampleDataSourceType struct{}
|
|
type exampleDataSourceType struct{}
|
|
|
|
|
|
func (t exampleDataSourceType) GetSchema(ctx context.Context) (tfsdk.Schema, diag.Diagnostics) {
|
|
func (t exampleDataSourceType) GetSchema(ctx context.Context) (tfsdk.Schema, diag.Diagnostics) {
|