コード例 #1
0
ファイル: securecookie.go プロジェクト: xyproto/web
func say(ctx *web.Context) {
	ctx.SetSecureCookie("said", ctx.Params["said"], 3600)
	ctx.Redirect(303, "/")
	return
}