Dong-woo, Seo

Results 1 comments of Dong-woo, Seo

```suggestion func Destroy(ctx *gin.Context) error { v, ok := ctx.Get(manageKey) if !ok { return fmt.Errorf("invalid session manager") } return v.(*session.Manager).Destroy(nil, ctx.Writer, ctx.Request) } // Refresh a session and return to...