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

13 lines
231 B
Go

//go:build !windows
package windows
import (
"github.com/shirou/gopsutil/v4/process"
"github.com/sjzar/chatlog/internal/wechat/model"
)
func initializeProcessInfo(p *process.Process, info *model.Process) error {
return nil
}