golangci-lint/pkg/commands/executor.go
2018-05-29 11:18:47 +03:00

37 lines
506 B
Go

package commands
import (
"github.com/golangci/golangci-lint/pkg/config"
"github.com/spf13/cobra"
)
type Executor struct {
rootCmd *cobra.Command
cfg *config.Config
exitCode int
version, commit, date string
}
func NewExecutor(version, commit, date string) *Executor {
e := &Executor{
cfg: &config.Config{},
}
e.initRoot()
e.initRun()
e.initLinters()
e.version = version
e.commit = commit
e.date = date
return e
}
func (e Executor) Execute() error {
return e.rootCmd.Execute()
}