mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-25 05:02:44 -05:00
8 lines
196 B
Go
8 lines
196 B
Go
package response
|
|
|
|
// ModuleList is the response structure for a pageable list of modules.
|
|
type ModuleList struct {
|
|
Meta PaginationMeta `json:"meta"`
|
|
Modules []*Module `json:"modules"`
|
|
}
|