Files
chatlog/internal/wechat/model/process.go
Shen Junzheng 80c7e67106 x
2025-03-24 22:42:31 +08:00

25 lines
370 B
Go

package model
type Process struct {
PID uint32
ExePath string
Platform string
Version int
FullVersion string
Status string
DataDir string
AccountName string
}
// 平台常量定义
const (
PlatformWindows = "windows"
PlatformMacOS = "darwin"
)
const (
StatusInit = ""
StatusOffline = "offline"
StatusOnline = "online"
)