mirror of
https://github.com/gabrie30/ghorg.git
synced 2025-08-07 06:47:14 +02:00
14 lines
132 B
Go
14 lines
132 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/ghorg/cmd"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("Hello, Ghorg")
|
|
cmd.Clone(os.Args[1])
|
|
}
|