mirror of
https://github.com/cloudnativelabs/kube-router.git
synced 2025-11-24 22:41:22 +01:00
* go.mod: Vendor coreos/go-iptables 0.4.5 * go.mod: Vendor containernetworking/plugins v0.8.0 * Update implementation to work with libcni 0.8.0 * go.mod: Vendor containernetworking/plugins v0.9.0
13 lines
189 B
Go
13 lines
189 B
Go
// +build windows
|
|
|
|
package tail
|
|
|
|
import (
|
|
"github.com/nxadm/tail/winfile"
|
|
"os"
|
|
)
|
|
|
|
func OpenFile(name string) (file *os.File, err error) {
|
|
return winfile.OpenFile(name, os.O_RDONLY, 0)
|
|
}
|