10 lines
188 B
Go
Raw Permalink Normal View History

2024-04-10 22:10:09 +08:00
package model
type RedirectError struct {
// Location is the location to find the contents.
Location string
// Code is the HTTP redirect status code to return to clients.
Code int
}