19 lines
590 B
Go
19 lines
590 B
Go
package middleware
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"kra/internal/server/httpx"
|
|
)
|
|
|
|
const (
|
|
CodeSuccess = httpx.CodeSuccess
|
|
CodeError = httpx.CodeError
|
|
CodePasswordChangeRequired = httpx.CodePasswordChangeRequired
|
|
)
|
|
|
|
type Response = httpx.Response
|
|
|
|
func Write(c *gin.Context, code int, data any, message string) { httpx.Write(c, code, data, message) }
|
|
func NoAuth(c *gin.Context, message string) { httpx.NoAuth(c, message) }
|
|
func SetTokenCookie(c *gin.Context, value string, maxAge int) { httpx.SetTokenCookie(c, value, maxAge) }
|