update parse dep to prefer mgconfig

This commit is contained in:
2023-05-28 13:43:52 -07:00
parent 0ca447fab6
commit 95519909fa
8 changed files with 53 additions and 33 deletions

View File

@@ -28,7 +28,7 @@ func main() {
shouldHighlight := highlight != ""
w.Header().Add("Content-Type", "text/html")
repoPaths, err := commits.GetMRRepos()
repoPaths, err := commits.GetRepos()
if err != nil {
panic(err)
}
@@ -47,7 +47,7 @@ func main() {
if err == nil {
year = y
}
repoPaths, err := commits.GetMRRepos()
repoPaths, err := commits.GetRepos()
if err != nil {
panic(err)
}
@@ -72,7 +72,7 @@ func main() {
}
year = y
}
repoPaths, err := commits.GetMRRepos()
repoPaths, err := commits.GetRepos()
if err != nil {
panic(err)
}