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

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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()
}