Align structs

pull/3076/head
Juan Calderon-Perez 2024-07-25 08:43:51 -04:00
parent 7ae39c4d14
commit e68de0026f
1 changed files with 2 additions and 2 deletions

View File

@ -42,10 +42,10 @@ const (
// Redirect is a struct that holds the redirect data. // Redirect is a struct that holds the redirect data.
type Redirect struct { type Redirect struct {
c *DefaultCtx // Embed ctx c *DefaultCtx // Embed ctx
status int // Status code of redirection. Default: StatusFound
messages []string // Flash messages
oldInput map[string]string // Old input data oldInput map[string]string // Old input data
cookieConfig CookieConfig // Cookie configuration cookieConfig CookieConfig // Cookie configuration
messages []string // Flash messages
status int // Status code of redirection. Default: StatusFound
} }
// RedirectConfig A config to use with Redirect().Route() // RedirectConfig A config to use with Redirect().Route()