cmd_config.go 162 字节
Newer Older
P
Phodal Huang 已提交
1 2 3 4 5 6 7 8 9 10
package config

type TypeCocaConfig struct {
	ReporterPath string
}

var CocaConfig = &TypeCocaConfig{
	ReporterPath: "coca_reporter",
}

P
Phodal Huang 已提交
11
const VERSION = "1.3.0"