mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-21 18:10:30 -04:00
10 lines
268 B
Go
10 lines
268 B
Go
// Copyright IBM Corp. 2014, 2026
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package response
|
|
|
|
// ModuleList is the response structure for a pageable list of modules.
|
|
type ModuleList struct {
|
|
Meta PaginationMeta `json:"meta"`
|
|
Modules []*Module `json:"modules"`
|
|
}
|