summaryrefslogtreecommitdiffstats
path: root/plugin/rpcplugin/process_windows.go
blob: 7be03cacd00c86ff10ae5e09ad56331c1295b169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package rpcplugin

import (
	"context"
	"fmt"
	"io"
)

func newProcess(ctx context.Context, path string) (Process, io.ReadWriteCloser, error) {
	// TODO
	return nil, nil, fmt.Errorf("not yet supported")
}

func inheritedProcessIPC() (*IPC, error) {
	// TODO
	return nil, fmt.Errorf("not yet supported")
}