Initial commit

This commit is contained in:
Arthur Barr
2017-09-07 13:39:11 +01:00
commit ec68367227
735 changed files with 248651 additions and 0 deletions

12
vendor/github.com/hpcloud/tail/tail_windows.go generated vendored Normal file
View File

@@ -0,0 +1,12 @@
// +build windows
package tail
import (
"github.com/hpcloud/tail/winfile"
"os"
)
func OpenFile(name string) (file *os.File, err error) {
return winfile.OpenFile(name, os.O_RDONLY, 0)
}