aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/registry/response/module_list.go
blob: 978374822f485271b44e480fe3a2d76900aae1e9 (plain) (blame)
1
2
3
4
5
6
7
package response

// ModuleList is the response structure for a pageable list of modules.
type ModuleList struct {
	Meta    PaginationMeta `json:"meta"`
	Modules []*Module      `json:"modules"`
}