mirror of
https://gitee.com/goploy/goploy.git
synced 2024-11-29 18:57:59 +08:00
10 lines
232 B
Go
10 lines
232 B
Go
package config
|
|
|
|
type CORSConfig struct {
|
|
Enabled bool `toml:"enabled"`
|
|
Origins string `toml:"origins"`
|
|
Methods string `toml:"methods"`
|
|
Headers string `toml:"headers"`
|
|
Credentials bool `toml:"credentials"`
|
|
}
|