| 123456789101112131415 |
- package middleware
- import (
- "github.com/gin-contrib/cors"
- "github.com/gin-gonic/gin"
- )
- func CORS() gin.HandlerFunc {
- config := cors.DefaultConfig()
- config.AllowAllOrigins = true
- config.AllowCredentials = true
- config.AllowMethods = []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"}
- config.AllowHeaders = []string{"*"}
- return cors.New(config)
- }
|