Update vendor package

This commit is contained in:
Tomofumi Hayashi
2021-05-22 02:05:38 +09:00
parent 2339c11a15
commit 3f1031e7b4
2253 changed files with 268863 additions and 43488 deletions

11
vendor/github.com/nxadm/tail/tail_posix.go generated vendored Normal file
View File

@@ -0,0 +1,11 @@
// +build !windows
package tail
import (
"os"
)
func OpenFile(name string) (file *os.File, err error) {
return os.Open(name)
}