cors

package
v1.1.0-beta.17 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 3, 2022 License: MIT Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ConfigAdd

func ConfigAdd(path string)

func Register

func Register(ctx context.Context, options *fiber.Options) (fiber.ConfigPlugin, fiber.AppPlugin)

Register registers a new CORS plugin for fiber.

Types

type Cors

type Cors struct {
	// contains filtered or unexported fields
}

Cors represents a new CORS plugin for fiber.

func NewCorsWithConfigPath

func NewCorsWithConfigPath(path string) (*Cors, error)

NewCorsWithConfigPath returns a new CORS plugin with options from config path.

func NewCorsWithOptions

func NewCorsWithOptions(options *Options) *Cors

NewCorsWithOptions returns a new CORS plugin with options.

func (*Cors) Register

func (d *Cors) Register(ctx context.Context, options *fiber.Options) (fiber.ConfigPlugin, fiber.AppPlugin)

Register registers this CORS plugin for fiber.

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 fiber options.

func NewOptions

func NewOptions() (*Options, error)

NewOptions returns options from config file or environment vars.

func NewOptionsWithPath

func NewOptionsWithPath(path string) (opts *Options, err error)

NewOptionsWithPath unmarshals options based a given key path.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL