Files
chatlog_alpha/internal/wechat/model/process.go
teest114514 ec41b0d2be Remove macOS/WeChat 3.x support and related code
Dropped all code, documentation, and models related to macOS and WeChat 3.x (darwinv3) support, including command-line tools, model definitions, and documentation files. Updated README to clarify that only Windows and WeChat 4.x are supported, and improved instructions for image key acquisition. Enhanced restart-and-get-key logic with status callbacks and retry handling for more robust key extraction after WeChat restarts.
2025-12-16 21:35:01 +08:00

24 lines
342 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"
)
const (
StatusInit = ""
StatusOffline = "offline"
StatusOnline = "online"
)