mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-30 10:47:14 -06:00
248a5e4523
keep these in one place for now
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"`
|
|
}
|