mirror of
https://github.com/gofiber/fiber.git
synced 2025-05-29 19:03:34 +00:00
15 lines
304 B
Go
15 lines
304 B
Go
// +build darwin
|
|
// +build !cgo
|
|
|
|
package cpu
|
|
|
|
import "github.com/gofiber/fiber/v2/internal/gopsutil/common"
|
|
|
|
func perCPUTimes() ([]TimesStat, error) {
|
|
return []TimesStat{}, common.ErrNotImplementedError
|
|
}
|
|
|
|
func allCPUTimes() ([]TimesStat, error) {
|
|
return []TimesStat{}, common.ErrNotImplementedError
|
|
}
|