in src/handlers/helpers.go [83:91]
func ensurePackagePresent(actionToInvoke string) string {
if actionToInvoke == "" {
return ""
}
if !strings.Contains(actionToInvoke, "/") {
actionToInvoke = "default" + "/" + actionToInvoke
}
return actionToInvoke
}