Example #1
0
File: main.go Project: kiran-mk/go
func signout(w http.ResponseWriter, r *http.Request) {
	c := appengine.NewContext(r)
	messaging.DeleteSession(c, w, r, secretKey)
}
Example #2
0
File: main.go Project: pubnub/go
func signout(w http.ResponseWriter, r *http.Request) {
	//c := context.NewContext(r)
	c := createContext(r)
	messaging.DeleteSession(c, w, r, secretKey)
}