1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00
shirou_gopsutil/net_windows.go

12 lines
171 B
Go
Raw Normal View History

2014-05-12 12:10:28 +09:00
// +build windows
package gopsutil
import (
"errors"
)
func NetIOCounters(pernic bool) ([]NetIOCountersStat, error) {
return nil, errors.New("not implemented yet")
}