func ConvertRepositoryPath()

in pkg/event_processor/codebase.go [37:43]


func ConvertRepositoryPath(repo string) string {
	if !strings.HasPrefix(repo, "/") {
		repo = "/" + repo
	}

	return strings.ToLower(repo)
}