mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-27 21:22:03 -08:00
08779c2909
* Update dependencies
13 lines
215 B
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)
|
|
}
|