Renderer represents an HTML template renderer found in http/html.
| 66 | |
| 67 | // Renderer represents an HTML template renderer found in http/html. |
| 68 | type Renderer interface { |
| 69 | Render(ctx context.Context, w io.Writer) |
| 70 | } |
| 71 | |
| 72 | // Route represents a named reference to a renderer. |
| 73 | type Route struct { |
no outgoing calls
no test coverage detected