Codebase list aptly / 34c8de04-a04f-4919-858a-12e05baed2a2/main cmd / api.go
34c8de04-a04f-4919-858a-12e05baed2a2/main

Tree @34c8de04-a04f-4919-858a-12e05baed2a2/main (Download .tar.gz)

api.go @34c8de04-a04f-4919-858a-12e05baed2a2/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(),
		},
	}
}