예제 #1
0
파일: gae.go 프로젝트: yanunon/go-tap
func init() {
	s := tap.NewServer("KEY", "SECRET", "HOST", "https", "DATA_DIR", 0)
	s.ListenAndServe("")
}
예제 #2
0
파일: go-tap.go 프로젝트: yanunon/go-tap
func main() {
	data_dir := os.Getenv("OPENSHIFT_DATA_DIR")
	s := tap.NewServer("KEY", "SECRET", "HOST", "https", data_dir, 1)
	ip := os.Getenv("OPENSHIFT_INTERNAL_IP")
	s.ListenAndServe(fmt.Sprintf("%s:8080", ip))
}