예제 #1
0
파일: routes.go 프로젝트: 13pinj/todoapp
func index(c *gin.Context) {
	c.Redirect(301, "/room/hn")
}
예제 #2
0
파일: ctl.go 프로젝트: 13pinj/todoapp
// Redirect выполняет перенаправление.
func Redirect(c *gin.Context, location string) {
	c.Redirect(http.StatusFound, location)
}