HttpServerFactory is the interface for [echo.Echo] factories.
| 6 | |
| 7 | // HttpServerFactory is the interface for [echo.Echo] factories. |
| 8 | type HttpServerFactory interface { |
| 9 | Create(options ...HttpServerOption) (*echo.Echo, error) |
| 10 | } |
| 11 | |
| 12 | // DefaultHttpServerFactory is the default [HttpServerFactory] implementation. |
| 13 | type DefaultHttpServerFactory struct{} |
no outgoing calls
no test coverage detected