luet/vendor/github.com/hpcloud/tail/tail_windows.go
Ettore Di Giacinto e2442f8ed8
update vendor/
2019-06-05 19:14:29 +02:00

13 lines
191 B
Go

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