merch-api/pkg/utils/cpus.go
2026-02-23 20:46:53 +03:00

11 lines
135 B
Go

package utils
import "runtime"
type cpuUtil interface {
NumCPU() int
}
func (h *Handler) NumCPU() int {
return runtime.NumCPU()
}