1package git23import "errors"45var (6 // ErrNotAuthed represents unauthorized access.7 ErrNotAuthed = errors.New("you are not authorized to do this")89 // ErrSystemMalfunction represents a general system error returned to clients.10 ErrSystemMalfunction = errors.New("something went wrong")1112 // ErrInvalidRepo represents an attempt to access a non-existent repo.13 ErrInvalidRepo = errors.New("invalid repo")1415 // ErrInvalidRequest represents an invalid request.16 ErrInvalidRequest = errors.New("invalid request")1718 // ErrMaxConnections represents a maximum connection limit being reached.19 ErrMaxConnections = errors.New("too many connections, try again later")2021 // ErrTimeout is returned when the maximum read timeout is exceeded.22 ErrTimeout = errors.New("I/O timeout reached")23)