File: package.go

package info (click to toggle)
aptly 1.6.1%2Bds1-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 49,932 kB
  • sloc: python: 10,333; sh: 248; makefile: 176
file content (16 lines) | stat: -rw-r--r-- 288 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cmd

import (
	"github.com/smira/commander"
)

func makeCmdPackage() *commander.Command {
	return &commander.Command{
		UsageLine: "package",
		Short:     "operations on packages",
		Subcommands: []*commander.Command{
			makeCmdPackageSearch(),
			makeCmdPackageShow(),
		},
	}
}