style: use linter to style the code

This commit is contained in:
Simon Cornet 2025-02-28 14:34:37 +01:00
commit 3f81ebfb0d
5 changed files with 33 additions and 45 deletions

View file

@ -56,14 +56,3 @@ func fetchRepositoriesGitlab() ([]Repository, error) {
return repositories, nil
}
func getGitlabURL(gitlabToken string, gitlabHost string, repoName string) (string) {
// make gitlab url
url := fmt.Sprintf("https://gitlab-token:%s@%s/%s.git",
gitlabToken,
gitlabHost,
repoName)
return url
}