liujiandao
2024-04-28 1884f07f084e0e7eabb540c4d04dd0b5154ae588
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package config
 
type CORS struct {
    Mode      string          `mapstructure:"mode" json:"mode" yaml:"mode"`
    Whitelist []CORSWhitelist `mapstructure:"whitelist" json:"whitelist" yaml:"whitelist"`
}
 
type CORSWhitelist struct {
    AllowOrigin      string `mapstructure:"allow-origin" json:"allow-origin" yaml:"allow-origin"`
    AllowMethods     string `mapstructure:"allow-methods" json:"allow-methods" yaml:"allow-methods"`
    AllowHeaders     string `mapstructure:"allow-headers" json:"allow-headers" yaml:"allow-headers"`
    ExposeHeaders    string `mapstructure:"expose-headers" json:"expose-headers" yaml:"expose-headers"`
    AllowCredentials bool   `mapstructure:"allow-credentials" json:"allow-credentials" yaml:"allow-credentials"`
}