2024-04-14 21:48:27 +08:00

10 lines
188 B
Go

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
}