github.com/opentofu/opentofu@v1.7.1/internal/registry/response/redirect.go (about)

     1  // Copyright (c) The OpenTofu Authors
     2  // SPDX-License-Identifier: MPL-2.0
     3  // Copyright (c) 2023 HashiCorp, Inc.
     4  // SPDX-License-Identifier: MPL-2.0
     5  
     6  package response
     7  
     8  // Redirect causes the frontend to perform a window redirect.
     9  type Redirect struct {
    10  	URL string `json:"url"`
    11  }