blob: c9c49ae5b2ad8e175be339e92b6cd1685034ad28 [file] [log] [blame]
package types
import "errors"
const (
// The path of the git cookie file used by task scheduler. go/gitauth will
// create and manage this file.
GitCookiesPath = "/tmp/.gitcookies"
)
var (
ErrUnknownId = errors.New("Unknown ID")
)