mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2024-11-17 01:17:37 +00:00
16 lines
527 B
Go
16 lines
527 B
Go
|
package server
|
||
|
|
||
|
import "xmr-remote-nodes/cmd"
|
||
|
|
||
|
func init() {
|
||
|
cmd.Root.AddCommand(serveCmd)
|
||
|
cmd.Root.AddCommand(cronCmd)
|
||
|
cmd.Root.AddCommand(probersCmd)
|
||
|
probersCmd.AddCommand(listProbersCmd)
|
||
|
probersCmd.AddCommand(addProbersCmd)
|
||
|
probersCmd.AddCommand(editProbersCmd)
|
||
|
probersCmd.AddCommand(deleteProbersCmd)
|
||
|
listProbersCmd.Flags().StringP("sort-by", "s", "last_submit_ts", "Sort by column name, can be id or last_submit_ts")
|
||
|
listProbersCmd.Flags().StringP("sort-dir", "d", "desc", "Sort direction, can be asc or desc")
|
||
|
}
|