Codebase list golang-github-jawher-mow.cli / lintian-fixes/main errors.go
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

errors.go @lintian-fixes/mainraw · history · blame

package cli

import (
	"errors"
)

var (
	errHelpRequested    = errors.New("help requested")
	errVersionRequested = errors.New("version requested")
)