mirror of
https://github.com/gabrie30/ghorg.git
synced 2025-08-10 16:27:10 +02:00
10 lines
94 B
Go
10 lines
94 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func Clone(arg string) {
|
|
fmt.Println("Cloning Repos", arg)
|
|
}
|