mirror of
https://github.com/ysoftdevs/gardener-extension-shoot-fleet-agent.git
synced 2026-03-24 18:11:58 +01:00
12 lines
132 B
Go
12 lines
132 B
Go
// +build !windows
|
|
|
|
package tail
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func OpenFile(name string) (file *os.File, err error) {
|
|
return os.Open(name)
|
|
}
|