Test init log (#974)

This commit is contained in:
link
2023-03-23 12:09:46 +08:00
committed by GitHub
parent 02e712f649
commit 60a141fe25

View File

@@ -177,11 +177,7 @@ func PostKillCasaOS(c *gin.Context) {
func GetSystemHardwareInfo(c *gin.Context) {
data := make(map[string]string, 1)
data["drive_model"] = service.MyService.System().GetDeviceTree()
if runtime.GOARCH == "arm" {
data["arch"] = "arm-7"
} else {
data["arch"] = runtime.GOARCH
}
data["arch"] = runtime.GOARCH
if cpu := service.MyService.System().GetCpuInfo(); len(cpu) > 0 {