Router is an Engine that routes each function call to the correct sub-Engine based off the provided URI's scheme and its enablement.
| 19 | // Router is an Engine that routes each function call to the correct sub-Engine |
| 20 | // based off the provided URI's scheme and its enablement. |
| 21 | type Router struct { |
| 22 | engines map[Scheme]Engine |
| 23 | } |
| 24 | |
| 25 | var _ Engine = (*Router)(nil) |
| 26 |
nothing calls this directly
no outgoing calls
no test coverage detected