fusenapi/utils/auth/cors.go
2023-07-11 19:43:46 +08:00

12 lines
351 B
Go

package auth
import "net/http"
func FsCors(header http.Header) {
header.Set("Access-Control-Allow-Origin", "*")
header.Set("Access-Control-Allow-Methods", "POST, GET, OPTIONS, PUT, DELETE")
header.Set("Access-Control-Allow-Headers", "*")
header.Set("Access-Control-Expose-Headers", "*")
header.Set("Access-Control-Allow-Credentials", "true")
}