mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-09 23:25:33 -06:00
7 lines
130 B
Go
7 lines
130 B
Go
|
package response
|
||
|
|
||
|
// Redirect causes the frontend to perform a window redirect.
|
||
|
type Redirect struct {
|
||
|
URL string `json:"url"`
|
||
|
}
|