setup skeleton

This commit is contained in:
Jay Gabriels 2018-03-28 20:16:35 -07:00
parent ac7fe660b1
commit 01fe97fdfa
No known key found for this signature in database
GPG Key ID: 36E3478E31074A24
4 changed files with 23 additions and 8 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
ghorg

9
cmd/clone.go Normal file
View File

@ -0,0 +1,9 @@
package cmd
import (
"fmt"
)
func Clone(arg string) {
fmt.Println("Cloning Repos", arg)
}

View File

@ -1,8 +0,0 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello, Ghorg")
}

13
main.go Normal file
View File

@ -0,0 +1,13 @@
package main
import (
"fmt"
"os"
"github.com/ghorg/cmd"
)
func main() {
fmt.Println("Hello, Ghorg")
cmd.Clone(os.Args[1])
}