Files
opentf/internal/registry/response/module_download.go
2023-11-22 11:32:20 +01:00

12 lines
362 B
Go

// Copyright (c) OpenTofu
// SPDX-License-Identifier: MPL-2.0
package response
// ModuleLocationRegistryResp defines the OpenTofu registry response
// returned when calling the endpoint /v1/modules/:namespace/:name/:system/:version/download
type ModuleLocationRegistryResp struct {
// The URL to download the module from.
Location string `json:"location"`
}