(routeName string)
| 150 | } |
| 151 | |
| 152 | func (routeActor routeActor) FindPath(routeName string) (string, string) { |
| 153 | routeSlice := strings.Split(routeName, "/") |
| 154 | return routeSlice[0], strings.Join(routeSlice[1:], "/") |
| 155 | } |
| 156 | |
| 157 | func (routeActor routeActor) FindPort(routeName string) (string, int, error) { |
| 158 | var err error |