Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Cors ¶
type Cors struct {
// contains filtered or unexported fields
}
Cors represents CORS plugin for echo server.
func NewCorsWithConfigPath ¶
NewCorsWithConfigPath returns a new CORS plugin with options from config path.
func NewCorsWithOptions ¶
NewCorsWithOptions returns a new CORS plugin with options.
type Options ¶
type Options struct {
Enabled bool
Allowed struct {
Origins []string
Headers []string
Methods []string
Credentials bool
}
Exposed struct {
Headers []string
}
MaxAge int
}
Options CORS plugin for echo server options.
func NewOptions ¶
NewOptions returns options from config file or environment vars.
func NewOptionsWithPath ¶
NewOptionsWithPath unmarshals options based a given key path.
Click to show internal directories.
Click to hide internal directories.