5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-13 00:10:26 +00:00
matterbridge/vendor/github.com/labstack/echo/v4/middleware/static_other.go
Wim 08779c2909
Update dependencies (#2007)
* Update dependencies
2023-03-09 22:48:00 +01:00

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)
}