ref: 3be7b7361873beab887e69e8fe02f16fa9660b1b
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) }