package internal | |
import ( | |
"net/http" | |
"github.com/gin-gonic/gin" | |
) | |
func corsMiddleware() gin.HandlerFunc { | |
return func(c *gin.Context) { | |
c.Header("Access-Control-Allow-Origin", "*") | |
c.Header("Access-Control-Allow-Methods", "*") | |
c.Header("Access-Control-Allow-Headers", "*") | |
c.Header("Access-Control-Expose-Headers", "*") | |
c.Header("Access-Control-Allow-Credentials", "true") | |
if c.Request.Method == "OPTIONS" { | |
c.AbortWithStatus(http.StatusNoContent) | |
return | |
} | |
c.Next() | |
} | |
} | |