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