示例#1
0
文件: auth.go 项目: harryyeh/switch
func AuthPost(ctx *middleware.Context) {
	ctx.SetCookie("access_token", ctx.Query("token"))
	ctx.Redirect("/admin")
}