1
0

logout.go 365 B

1234567891011121314151617
  1. package base
  2. import (
  3. "net/http"
  4. "github.com/ChineseSubFinder/ChineseSubFinder/pkg/types/backend"
  5. "github.com/ChineseSubFinder/ChineseSubFinder/pkg/common"
  6. "github.com/gin-gonic/gin"
  7. )
  8. func (cb *ControllerBase) LogoutHandler(c *gin.Context) {
  9. // 注销
  10. common.SetAccessToken("")
  11. c.JSON(http.StatusOK, backend.ReplyCommon{Message: "ok, need ReLogin"})
  12. }