aboutsummaryrefslogtreecommitdiff
path: root/ssh/example_test.go
diff options
context:
space:
mode:
authorDavid Symonds <dsymonds@golang.org>2012-03-30 15:27:01 +1100
committerDavid Symonds <dsymonds@golang.org>2012-03-30 15:27:01 +1100
commit521edf84a06b2769f7a673319dcaee4024d4ecff (patch)
tree33313d547d5287a6cd0d92e64f0f9f6b5b25d749 /ssh/example_test.go
parentdf1b4d2fcd21fb05d2ac65176e2a4243c201a920 (diff)
downloadgo-x-crypto-521edf84a06b2769f7a673319dcaee4024d4ecff.tar.xz
go.crypto: add exp/terminal as code.google.com/p/go.crypto/ssh/terminal.
This removes the sole "exp/foo" import in the Go subrepos. A separate CL will remove exp/terminal from the standard Go repository. R=golang-dev, dave, r CC=golang-dev https://golang.org/cl/5966045
Diffstat (limited to 'ssh/example_test.go')
-rw-r--r--ssh/example_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssh/example_test.go b/ssh/example_test.go
index 2ee9fd8..ea772c2 100644
--- a/ssh/example_test.go
+++ b/ssh/example_test.go
@@ -6,9 +6,10 @@ package ssh
import (
"bytes"
- "exp/terminal"
"fmt"
"io/ioutil"
+
+ "code.google.com/p/go.crypto/ssh/terminal"
)
func ExampleListen() {