mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
14 lines
269 B
Go
14 lines
269 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,
|
|
}
|
|
}
|