| 29 | } |
| 30 | |
| 31 | type RouteManager struct { |
| 32 | s RoutesStorage |
| 33 | ks Storage |
| 34 | ms RoutesMemStorage |
| 35 | ps PsManager |
| 36 | } |
| 37 | |
| 38 | func NewRouteManager(s RoutesStorage, ks Storage, ms RoutesMemStorage, psm PsManager) *RouteManager { |
| 39 | return &RouteManager{ |
nothing calls this directly
no outgoing calls
no test coverage detected