xmr-remote-nodes/cmd/server/init.go
ditatompel c6e0ce751e
Remove import command
It's no longer needed since any new subbmision is now from xmr.ditatompel.com
2024-05-30 13:17:43 +07:00

15 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")
}