Codebase list aptly / lintian-fixes/main cmd / api.go
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

api.go @lintian-fixes/mainraw · history · blame

package cmd

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

func makeCmdAPI() *commander.Command {
	return &commander.Command{
		UsageLine: "api",
		Short:     "start API server/issue requests",
		Subcommands: []*commander.Command{
			makeCmdAPIServe(),
		},
	}
}