add utils.newPathErrorErr
This commit is contained in:
parent
c4b0d5c93d
commit
e02560544b
4
utils.go
4
utils.go
@ -20,6 +20,10 @@ func newPathError(op string, path string, statusCode int) error {
|
|||||||
return &os.PathError{op, path, errors.New(fmt.Sprintf("%d", statusCode))}
|
return &os.PathError{op, path, errors.New(fmt.Sprintf("%d", statusCode))}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func newPathErrorErr(op string, path string, err error) error {
|
||||||
|
return &os.PathError{op, path, err}
|
||||||
|
}
|
||||||
|
|
||||||
func FixSlash(s string) string {
|
func FixSlash(s string) string {
|
||||||
if !strings.HasSuffix(s, "/") {
|
if !strings.HasSuffix(s, "/") {
|
||||||
s += "/"
|
s += "/"
|
||||||
|
Loading…
Reference in New Issue
Block a user