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