mirror of
https://github.com/teest114514/chatlog_alpha.git
synced 2026-04-11 12:39:35 +08:00
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.
24 lines
342 B
Go
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"
|
|
)
|