Files
opentf/internal/registry/response/module_list.go
2023-05-02 15:33:06 +00:00

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