diff --git a/helpers.go b/helpers.go index b744657..812e5eb 100644 --- a/helpers.go +++ b/helpers.go @@ -210,7 +210,7 @@ func shortType(s string) string { func namespacedFlowType(s string) string { trimmed := strings.TrimLeft(s, ".") splitted := strings.Split(trimmed, ".") - return strings.Join(splitted[1:], "$") + return strings.Join(splitted, "$") } func httpPath(m *descriptor.MethodDescriptorProto) string {