Add showimp to commands.

This commit is contained in:
Kyle
2015-09-22 11:25:54 -07:00
parent 27819dbf0e
commit 4b3f1037b3
3 changed files with 140 additions and 0 deletions

21
cmd/showimp/README.md Normal file
View File

@@ -0,0 +1,21 @@
# showimp
## show imports
This will run over a source tree and print any imports that are not in
the standard library or inside the project.
```
kyle@nocturne:~/src/github.com/kisom/cryptutils$ showimp
External imports:
code.google.com/p/go.crypto/bcrypt
code.google.com/p/go.crypto/nacl/box
code.google.com/p/go.crypto/nacl/secretbox
code.google.com/p/go.crypto/scrypt
code.google.com/p/rsc/qr
github.com/agl/ed25519
github.com/conformal/yubikey
github.com/gokyle/readpass
github.com/gokyle/twofactor
github.com/gorilla/mux
```