mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-25 01:00:16 -05:00
11 lines
266 B
Go
11 lines
266 B
Go
// 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"`
|
|
}
|