blob: 6a258fcb0c4a15d4738577daeb1a97c76d38a9fd [file] [log] [blame]
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package response
// ModuleList is the response structure for a pageable list of modules.
type ModuleList struct {
Meta PaginationMeta `json:"meta"`
Modules []*Module `json:"modules"`
}