chore(go): run betteralign and gofumpt on codebase

This commit is contained in:
Gabe Kangas
2023-10-08 14:22:28 -07:00
parent a31179b604
commit 8e79e2acfa
18 changed files with 73 additions and 61 deletions

View File

@@ -20,7 +20,7 @@ func getPatternForRestEndpoint(pattern string) string {
}
func zip2D(iterable1 *[]string, iterable2 *[]string) map[string]string {
var dict = make(map[string]string)
dict := make(map[string]string)
for index, key := range *iterable1 {
dict[key] = (*iterable2)[index]
}