Files
2026-08-27 11:21:43 -06:00

22 lines
398 B
Go

//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")
}