initial commit

This commit is contained in:
2023-01-27 23:50:56 -08:00
commit 36260e2e09
3 changed files with 112 additions and 0 deletions

17
cmd/mrpaths.go Normal file
View File

@@ -0,0 +1,17 @@
package main
import (
"fmt"
"github.com/taigrr/mg/parse"
)
func main() {
mrconf, err := parse.LoadMRConfig()
if err != nil {
panic(err)
}
for _, path := range mrconf.GetRepoPaths() {
fmt.Println(path)
}
}