File: task.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 (15 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cmd

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

func makeCmdTask() *commander.Command {
	return &commander.Command{
		UsageLine: "task",
		Short:     "manage aptly tasks",
		Subcommands: []*commander.Command{
			makeCmdTaskRun(),
		},
	}
}