Merge pull request #17 from vbatts/static_build

process/embedded: missing import
This commit is contained in:
Chad Retz 2018-10-16 10:09:12 -05:00 committed by GitHub
commit 25e2ee8b21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ package tor033
import (
"context"
"fmt"
"net"
"github.com/cretz/bine/process"
)
@ -113,4 +114,4 @@ func (e *embeddedProcess) Wait() error {
func (e *embeddedProcess) EmbeddedControlConn() (net.Conn, error) {
return nil, process.ErrControlConnUnsupported
}
}