mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 16:30:19 +00:00
fb7dc13dfe
updated few packages in go.mod to latest available release. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
18 lines
463 B
Go
18 lines
463 B
Go
// Copyright (c) 2019 FOSS contributors of https://github.com/nxadm/tail
|
|
// +build !windows
|
|
|
|
package tail
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
// Deprecated: this function is only useful internally and, as such,
|
|
// it will be removed from the API in a future major release.
|
|
//
|
|
// OpenFile proxies a os.Open call for a file so it can be correctly tailed
|
|
// on POSIX and non-POSIX OSes like MS Windows.
|
|
func OpenFile(name string) (file *os.File, err error) {
|
|
return os.Open(name)
|
|
}
|