mirror of
https://github.com/taigrr/mg.git
synced 2026-04-02 11:38:41 -07:00
18 lines
219 B
Go
18 lines
219 B
Go
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)
|
|
}
|
|
}
|