1234567891011121314151617 |
- package middleware
- import (
- "github.com/gin-gonic/gin"
- "github.com/langgenius/dify-sandbox/internal/static"
- )
- func Auth() gin.HandlerFunc {
- config := static.GetDifySandboxGlobalConfigurations()
- return func(c *gin.Context) {
- if config.App.Key != c.GetHeader("X-Api-Key") {
- c.AbortWithStatus(401)
- return
- }
- }
- }
|