예제 #1
0
파일: login.go 프로젝트: pselibas/semaphore
func logout(c *gin.Context) {
	c.SetCookie("semaphore", "", -1, "/", "", false, true)
	c.AbortWithStatus(204)
}