mirror of
https://github.com/harness/drone.git
synced 2025-05-11 18:10:57 +00:00
9 lines
147 B
Go
9 lines
147 B
Go
package parser
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrSHADoesNotMatch = errors.New("sha does not match")
|
|
ErrHunkNotFound = errors.New("hunk not found")
|
|
)
|