You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
410 B
Go
19 lines
410 B
Go
//go:build !linux
|
|
|
|
package dap
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func AttachContainerIO(root string, stdin io.Reader, stdout, stderr io.Writer, setTtyRaw bool) error {
|
|
return errors.Errorf("unsupported")
|
|
}
|
|
|
|
func serveContainerIO(ctx context.Context, root string) (io.ReadCloser, io.WriteCloser, io.WriteCloser, func(), error) {
|
|
return nil, nil, nil, nil, errors.Errorf("unsupported")
|
|
}
|