cmd/config/cmd_config.go

Summary

Maintainability
A
0 mins
Test Coverage
package config

type TypeCocaConfig struct {
    ReporterPath string
    ClocDir      string
}

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

const VERSION = "2.4.1"