mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-26 18:27:53 +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)
|
|
}
|