예제 #1
0
파일: main.go 프로젝트: kiran-mk/go
func signout(w http.ResponseWriter, r *http.Request) {
	c := appengine.NewContext(r)
	messaging.DeleteSession(c, w, r, secretKey)
}
예제 #2
0
파일: main.go 프로젝트: pubnub/go
func signout(w http.ResponseWriter, r *http.Request) {
	//c := context.NewContext(r)
	c := createContext(r)
	messaging.DeleteSession(c, w, r, secretKey)
}