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

14 lines
220 B
Go

//go:build !windows
package windows
import (
"context"
"github.com/sjzar/chatlog/internal/wechat/model"
)
func (e *V3Extractor) Extract(ctx context.Context, proc *model.Process) (string, error) {
return "", nil
}