mirror of https://github.com/shirou/gopsutil
add net_windows.go as placeholder.
parent
52a7258c36
commit
755f65b5f3
@ -0,0 +1,11 @@
|
||||
// +build windows
|
||||
|
||||
package gopsutil
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
func NetIOCounters(pernic bool) ([]NetIOCountersStat, error) {
|
||||
return nil, errors.New("not implemented yet")
|
||||
}
|
Loading…
Reference in New Issue