Views is the interface that wraps the Render function.
| 97 | |
| 98 | // Views is the interface that wraps the Render function. |
| 99 | type Views interface { |
| 100 | Load() error |
| 101 | Render(out io.Writer, name string, binding any, layout ...string) error |
| 102 | } |
| 103 | |
| 104 | // App returns the *App reference to the instance of the Fiber application |
| 105 | func (c *DefaultCtx) App() *App { |
no outgoing calls
no test coverage detected