Home / Function/ FromCustom() — fiber Function Reference

FromCustom() — fiber Function Reference

Architecture documentation for the FromCustom() function in extractors.go from the fiber codebase.

Entity Profile

Dependency Diagram

graph TD
  0948e196_1a6b_0f32_8ca6_cd145867db64["FromCustom()"]
  9369d97d_10d6_c835_81b9_8542715b2822["extractors.go"]
  0948e196_1a6b_0f32_8ca6_cd145867db64 -->|defined in| 9369d97d_10d6_c835_81b9_8542715b2822
  style 0948e196_1a6b_0f32_8ca6_cd145867db64 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

extractors/extractors.go lines 406–415

func FromCustom(key string, fn func(fiber.Ctx) (string, error)) Extractor {
	if fn == nil {
		fn = func(fiber.Ctx) (string, error) { return "", ErrNotFound }
	}
	return Extractor{
		Extract: fn,
		Key:     key,
		Source:  SourceCustom,
	}
}

Domain

Subdomains

Frequently Asked Questions

What does FromCustom() do?
FromCustom() is a function in the fiber codebase, defined in extractors/extractors.go.
Where is FromCustom() defined?
FromCustom() is defined in extractors/extractors.go at line 406.

Analyze Your Own Codebase

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

Try Supermodel Free