hello world

This commit is contained in:
Radu Ioan Fericean
2012-01-24 12:48:58 +02:00
parent cdfe7f2911
commit 93446afa3d

17
src/cmd/cgrates.go Normal file
View File

@@ -0,0 +1,17 @@
package main
import (
"flag"
"fmt"
"log"
)
var (
host = flag.String("host", "localhost:8080", "target host:port")
)
func main() {
flag.Parse()
fmt.Println(*host)
log.Print("Bye!")
}