opentofu/registry/response/module_list.go
James Bardin 248a5e4523 copy regsrc and response from registry repo
keep these in one place for now
2017-10-25 14:11:33 -04:00

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"`
}