all: format

This commit is contained in:
fatedier 2016-06-07 11:15:59 +08:00
parent 2640c0b570
commit e8c830e5c8
2 changed files with 20 additions and 12 deletions

View File

@ -36,7 +36,8 @@ var usage string = `frpc is the client of frp
Usage:
frpc [-c config_file] [-L log_file] [--log-level=<log_level>] [--server-addr=<server_addr>]
frpc -h | --help | --version
frpc -h | --help
frpc -v | --version
Options:
-c config_file set config file
@ -88,6 +89,13 @@ func main() {
client.ServerPort = serverPort
}
if args["-v"] != nil {
if args["-v"].(bool) {
fmt.Println(version.Full())
os.Exit(0)
}
}
log.InitLog(client.LogWay, client.LogFile, client.LogLevel, client.LogMaxDays)
// wait until all control goroutine exit