Home / Type/ Config Type — fiber Architecture

Config Type — fiber Architecture

Architecture documentation for the Config type/interface in client.go from the fiber codebase.

Entity Profile

Dependency Diagram

graph TD
  d52808f3_089e_08d9_01d4_cc2fa4bc09b5["Config"]
  0a898b85_5e70_235c_a863_b41e3d48af64["client.go"]
  d52808f3_089e_08d9_01d4_cc2fa4bc09b5 -->|defined in| 0a898b85_5e70_235c_a863_b41e3d48af64
  style d52808f3_089e_08d9_01d4_cc2fa4bc09b5 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

client/client.go lines 655–669

type Config struct {
	Ctx                    context.Context //nolint:containedctx // It's needed to be stored in the config.
	Body                   any
	Header                 map[string]string
	Param                  map[string]string
	Cookie                 map[string]string
	PathParam              map[string]string
	FormData               map[string]string
	UserAgent              string
	Referer                string
	File                   []*File
	Timeout                time.Duration
	MaxRedirects           int
	DisablePathNormalizing bool
}

Defined In

Frequently Asked Questions

What is the Config type?
Config is a type/interface in the fiber codebase, defined in client/client.go.
Where is Config defined?
Config is defined in client/client.go at line 655.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free