mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
12 lines
159 B
Go
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)
|
||
|
}
|