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