Exemple #1
0
func index(c *gin.Context) {
	c.Redirect(301, "/room/hn")
}
Exemple #2
0
// Redirect выполняет перенаправление.
func Redirect(c *gin.Context, location string) {
	c.Redirect(http.StatusFound, location)
}