ref: f84c576b415dc35c104f757959f7a9e4f88e14ee
pkg/go-git-http/errors.go
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package githttp import ( "fmt" ) type ErrorNoAccess struct { // Path to directory of repo accessed Dir string } func (e *ErrorNoAccess) Error() string { return fmt.Sprintf("Could not access repo at '%s'", e.Dir) }