merch-api/pkg/utils/cpus.go

12 lines
135 B
Go
Raw Permalink Normal View History

2026-02-23 20:46:53 +03:00
package utils
import "runtime"
type cpuUtil interface {
NumCPU() int
}
func (h *Handler) NumCPU() int {
return runtime.NumCPU()
}