ghorg/main.go
2018-03-29 07:05:53 -07:00

22 lines
264 B
Go

package main
import (
"fmt"
"log"
"github.com/ghorg/cmd"
"github.com/joho/godotenv"
)
func main() {
fmt.Println("Hello, Ghorg")
cmd.CloneAllReposByOrg()
}
func init() {
err := godotenv.Load()
if err != nil {
log.Fatal("Error loading .env file")
}
}