aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/registry/response/module_list.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/terraform/registry/response/module_list.go')
-rw-r--r--vendor/github.com/hashicorp/terraform/registry/response/module_list.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/github.com/hashicorp/terraform/registry/response/module_list.go b/vendor/github.com/hashicorp/terraform/registry/response/module_list.go
new file mode 100644
index 0000000..9783748
--- /dev/null
+++ b/vendor/github.com/hashicorp/terraform/registry/response/module_list.go
@@ -0,0 +1,7 @@
1package response
2
3// ModuleList is the response structure for a pageable list of modules.
4type ModuleList struct {
5 Meta PaginationMeta `json:"meta"`
6 Modules []*Module `json:"modules"`
7}