mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
15 lines
168 B
Go
15 lines
168 B
Go
![]() |
// +build freebsd
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func (c CPU) Cpu_times() map[string]string {
|
||
|
ret := make(map[string]string)
|
||
|
|
||
|
fmt.Println("FreeBSD")
|
||
|
return ret
|
||
|
}
|