logout.go 351 B

12345678910111213141516
  1. package base
  2. import (
  3. "github.com/allanpk716/ChineseSubFinder/pkg/types/backend"
  4. "net/http"
  5. "github.com/allanpk716/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. }