fusenapi/utils/auth/cors.go

12 lines
351 B
Go
Raw Normal View History

2023-07-11 11:43:46 +00:00
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")
}