niki/vendor/github.com/labstack/echo/v4/middleware/static_other.go

13 lines
215 B
Go

//go:build !windows
package middleware
import (
"os"
)
// We ignore these errors as there could be handler that matches request path.
func isIgnorableOpenFileError(err error) bool {
return os.IsNotExist(err)
}