Codebase list aptly / debian/1.3.0+ds1-2.2_deb10u1 cmd / api.go
debian/1.3.0+ds1-2.2_deb10u1

Tree @debian/1.3.0+ds1-2.2_deb10u1 (Download .tar.gz)

api.go @debian/1.3.0+ds1-2.2_deb10u1raw · 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(),
		},
	}
}