示例#1
0
func main() {
	if Release != "" {
		tachyon.Release = Release
	}

	os.Exit(tachyon.Main(os.Args))
}
示例#2
0
文件: tachyon.go 项目: denji/tachyon
func main() {
	if Release != "" {
		tachyon.Release = Release
	}
	if version != "" {
		tachyon.Version = version
	}

	os.Exit(tachyon.Main(os.Args))
}
示例#3
0
func main() {
	os.Exit(tachyon.Main(os.Args))
}