in pkg/mock/handlers/handlers.go [179:186]
func trimRoute(route string) string {
// Remove trailing path elements, e.g. "0e:49:61:0f:c3:11/device-number" => "0e:49:61:0f:c3:11"
route, _, foundSlash := stringCut(route, "/")
if !foundSlash {
return route
}
return route + "/"
}