mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-10-13 11:39:13 +00:00
10 lines
331 B
Go
10 lines
331 B
Go
// Package sys provides system utilities for monitoring network connections and CPU usage.
|
|
// Platform-specific implementations are provided for Windows, Linux, and macOS.
|
|
package sys
|
|
|
|
import (
|
|
_ "unsafe"
|
|
)
|
|
|
|
//go:linkname HostProc github.com/shirou/gopsutil/v4/internal/common.HostProc
|
|
func HostProc(combineWith ...string) string
|