This repository has been archived on 2024-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
clash/test/main.go

15 lines
242 B
Go

package main
import (
"os"
"runtime"
"strconv"
"go.uber.org/automaxprocs/maxprocs"
)
func main() {
maxprocs.Set(maxprocs.Logger(func(string, ...any) {}))
os.Stdout.Write([]byte(strconv.FormatInt(int64(runtime.GOMAXPROCS(0)), 10)))
}