New command: package search to search whole package DB for matching packages. #80

This commit is contained in:
Andrey Smirnov
2014-08-28 19:42:47 +04:00
parent 608870265c
commit 468b1f11b9
4 changed files with 65 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package cmd
import (
"github.com/smira/commander"
)
func makeCmdPackage() *commander.Command {
return &commander.Command{
UsageLine: "package",
Short: "operations on packages",
Subcommands: []*commander.Command{
makeCmdPackageSearch(),
},
}
}