File: package.go

package info (click to toggle)
aptly 1.4.0%2Bds1-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 48,064 kB
  • sloc: python: 7,045; sh: 790; makefile: 77
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(),
		},
	}
}