This commit is contained in:
spiritlhl
2024-05-07 07:45:42 +00:00
parent 3634a376f0
commit 867b7781cc

View File

@@ -3,6 +3,7 @@ package main
import (
"fmt"
"net/http"
"strings"
"github.com/oneclickvirt/basics/network"
"github.com/oneclickvirt/basics/system"
@@ -16,7 +17,6 @@ func main() {
ipInfo, _, _ := network.NetworkCheck("both", false, "zh")
res := system.CheckSystemInfo("zh")
fmt.Println("--------------------------------------------------")
fmt.Printf(res)
fmt.Printf(ipInfo)
fmt.Printf(strings.ReplaceAll(res+ipInfo, "\n\n", "\n"))
fmt.Println("--------------------------------------------------")
}