(workspaceId string)
| 28 | var NonAlphaNumRegexp = regexp.MustCompile(`[^a-z0-9]+`) |
| 29 | |
| 30 | func DevWorkspaceRoutingName(workspaceId string) string { |
| 31 | return fmt.Sprintf("routing-%s", workspaceId) |
| 32 | } |
| 33 | |
| 34 | func EndpointName(endpointName string) string { |
| 35 | name := strings.ToLower(endpointName) |
no outgoing calls