This repository has been archived on 2020-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
tests/cmdline.go
2016-05-12 22:06:16 +03:00

13 lines
141 B
Go

package tests
import (
"flag"
)
var ConnectionPort string
func init() {
flag.StringVar(&ConnectionPort, "port", "", "")
flag.Parse()
}