Exemplo n.º 1
0
Arquivo: main.go Projeto: kiran-mk/go
func signout(w http.ResponseWriter, r *http.Request) {
	c := appengine.NewContext(r)
	messaging.DeleteSession(c, w, r, secretKey)
}
Exemplo n.º 2
0
Arquivo: main.go Projeto: pubnub/go
func signout(w http.ResponseWriter, r *http.Request) {
	//c := context.NewContext(r)
	c := createContext(r)
	messaging.DeleteSession(c, w, r, secretKey)
}