Home / Function/ HandlerNames() — gin Function Reference

HandlerNames() — gin Function Reference

Architecture documentation for the HandlerNames() function in context.go from the gin codebase.

Entity Profile

Relationship Graph

Source Code

context.go lines 155–164

func (c *Context) HandlerNames() []string {
	hn := make([]string, 0, len(c.handlers))
	for _, val := range c.handlers {
		if val == nil {
			continue
		}
		hn = append(hn, nameOfFunction(val))
	}
	return hn
}

Domain

Subdomains

Analyze Your Own Codebase

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

Try Supermodel Free