11 lines
153 B
Go
11 lines
153 B
Go
package middleware
|
|
|
|
import (
|
|
"github.com/gin-contrib/cors"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func CorsHandler() gin.HandlerFunc {
|
|
return cors.Default()
|
|
}
|