You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gorequest/config.go

39 lines
638 B

5 months ago
package gorequest
import (
"github.com/shirou/gopsutil/host"
"log"
"runtime"
)
type systemResult struct {
SystemOs string // 系统类型
SystemKernel string // 系统内核
}
// 获取系统信息
func getSystem() (result systemResult) {
hInfo, err := host.Info()
if err != nil {
log.Printf("getSystem.host.Info%s\n", err)
}
result.SystemOs = hInfo.OS
result.SystemKernel = hInfo.KernelArch
return result
}
// 设置配置信息
func (app *App) setConfig() {
info := getSystem()
app.config.systemOs = info.SystemOs
app.config.systemKernel = info.SystemKernel
app.config.goVersion = runtime.Version()
}