| 1037 | } |
| 1038 | |
| 1039 | command_result dig_now(color_ostream &out, std::vector<std::string> ¶ms) { |
| 1040 | dig_now_options options; |
| 1041 | if (!get_options(out, options, params) || options.help) |
| 1042 | return CR_WRONG_USAGE; |
| 1043 | |
| 1044 | return dig_now_impl(out, options) ? CR_OK : CR_FAILURE; |
| 1045 | } |
| 1046 | |
| 1047 | DFhackCExport command_result plugin_init(color_ostream &, |
| 1048 | std::vector<PluginCommand> &commands) { |
nothing calls this directly
no test coverage detected