mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
12 lines
171 B
Go
12 lines
171 B
Go
![]() |
// +build windows
|
||
|
|
||
|
package gopsutil
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
func NetIOCounters(pernic bool) ([]NetIOCountersStat, error) {
|
||
|
return nil, errors.New("not implemented yet")
|
||
|
}
|