mirror of
https://github.com/Luzifer/duplicity-backup.git
synced 2024-11-08 23:20:05 +00:00
11 lines
159 B
Go
11 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)
|
|
}
|