示例#1
0
// Logout will clear out the session and call the Logout() account function.
func Logout(s session.Store, account Account) {
	account.Logout()
	s.Delete(AUTH_UNIQUE_ID)
}