mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-10 17:13:30 +08:00
14 lines
456 B
Go
14 lines
456 B
Go
package configs
|
|
|
|
type CORS struct {
|
|
Mode string `mapstructure:"mode"`
|
|
WhiteList []CORSWhiteList `mapstructure:"whitelist"`
|
|
}
|
|
|
|
type CORSWhiteList struct {
|
|
AllowOrigin string `mapstructure:"allow-origin"`
|
|
AllowMethods string `mapstructure:"allow-methods"`
|
|
AllowHeaders string `mapstructure:"allow-headers"`
|
|
ExposeHeaders string `mapstructure:"expose-headers"`
|
|
AllowCredentials bool `mapstructure:"allow-credentials"`
|
|
}
|