diff options
| author | David Symonds <dsymonds@golang.org> | 2012-03-30 15:27:01 +1100 |
|---|---|---|
| committer | David Symonds <dsymonds@golang.org> | 2012-03-30 15:27:01 +1100 |
| commit | 521edf84a06b2769f7a673319dcaee4024d4ecff (patch) | |
| tree | 33313d547d5287a6cd0d92e64f0f9f6b5b25d749 /ssh/example_test.go | |
| parent | df1b4d2fcd21fb05d2ac65176e2a4243c201a920 (diff) | |
| download | go-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.go | 3 |
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() { |
