fix windows

This commit is contained in:
Megan Marsh 2020-04-22 14:05:38 -07:00
parent d713f7ec64
commit eb05f6ff88
1 changed files with 1 additions and 9 deletions

View File

@ -3,22 +3,14 @@
package googlecompute
import (
"bytes"
"context"
"fmt"
"log"
"os/exec"
"strings"
"syscall"
"time"
)
func NewTunnelDriver() TunnelDriver {
return &TunnelDriverWindows{}
}
type TunnelDriverLinux struct {
cmd *exec.Cmd
type TunnelDriverWindows struct {
}
func (t *TunnelDriverWindows) StartTunnel(cancelCtx context.Context, tempScriptFileName string) error {