package middleware import ( "github.com/gin-gonic/gin" ) func CORS() gin.HandlerFunc { return CORSWithConfig(CORSConfig{AllowAll: true}) }