github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/registry/response/module_list.go (about)

     1  // Copyright (c) HashiCorp, Inc.
     2  // SPDX-License-Identifier: MPL-2.0
     3  
     4  package response
     5  
     6  // ModuleList is the response structure for a pageable list of modules.
     7  type ModuleList struct {
     8  	Meta    PaginationMeta `json:"meta"`
     9  	Modules []*Module      `json:"modules"`
    10  }