Line data Source code
1 : #include "../../shared_dev/commands/dev.h" 2 : 3 : void 4 : firedancer_dev_dev_cmd_fn( args_t * args, 5 0 : config_t * config ) { 6 0 : dev_cmd_fn( args, config, NULL ); 7 0 : } 8 : 9 : action_t fd_action_dev = { 10 : .name = "dev", 11 : .args = dev_cmd_args, 12 : .fn = firedancer_dev_dev_cmd_fn, 13 : .perm = dev_cmd_perm, 14 : .is_local_cluster = 1, 15 : .description = "Start up a development validator" 16 : };