mirror of
https://github.com/gofiber/fiber.git
synced 2025-05-29 19:03:34 +00:00
* ✨feature: print all routes message when server starts * ✨feature: print all routes message when server starts * ✨feature: print all routes message when server starts * 🐛fix: errors unhandled * 🐛fix: ignore child process and add some "-" to the table head * 🐛fix: add printRoutesMessage for listener and listenTLS
15 lines
320 B
Go
15 lines
320 B
Go
//go:build darwin && !cgo
|
|
// +build darwin,!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
|
|
}
|