dvc890's picture
Upload 25 files
36a4021
raw
history blame contribute delete
471 Bytes
package middleware
import (
"github.com/gin-gonic/gin"
http "github.com/bogdanfinn/fhttp"
)
func CORSMiddleware() gin.HandlerFunc {
return func(c *gin.Context) {
c.Writer.Header().Set("Access-Control-Allow-Origin", "*")
c.Writer.Header().Set("Access-Control-Allow-Headers", "*")
c.Writer.Header().Set("Access-Control-Allow-Methods", "*")
if c.Request.Method == http.MethodOptions {
c.AbortWithStatus(http.StatusNoContent)
return
}
c.Next()
}
}