19e9ed5cdf
The updatechanstatus command calls into the UpdateChanStatus RPC in the router server.
17 lines
330 B
Go
17 lines
330 B
Go
package main
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// routerCommands returns a list of routerrpc commands.
|
|
func routerCommands() []cli.Command {
|
|
return []cli.Command{
|
|
queryMissionControlCommand,
|
|
queryProbCommand,
|
|
resetMissionControlCommand,
|
|
buildRouteCommand,
|
|
getCfgCommand,
|
|
setCfgCommand,
|
|
updateChanStatusCommand,
|
|
}
|
|
}
|