1
0
mirror of https://github.com/Luzifer/duplicity-backup.git synced 2024-09-20 08:52:54 +00:00
duplicity-backup/vendor/github.com/hpcloud/tail/tail_posix.go
Knut Ahlers 6275a80c3f
Deps: Update dependencies
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-10-08 15:14:49 +02:00

12 lines
159 B
Go

// +build linux darwin freebsd netbsd openbsd
package tail
import (
"os"
)
func OpenFile(name string) (file *os.File, err error) {
return os.Open(name)
}