starting the process of moving manifest mgmt to a dedicated subcommand

This commit is contained in:
Chris Punches
2025-03-16 23:16:40 -04:00
parent 172bc2e9c8
commit 2623bcf2b3
6 changed files with 116 additions and 5 deletions

View File

@@ -91,6 +91,9 @@ extern "C" int dpm_module_execute(const char* command, int argc, char** argv) {
case CMD_HELP:
return cmd_help(argc, argv);
case CMD_MANIFEST:
return cmd_manifest(argc, argv);
case CMD_UNKNOWN:
default:
return cmd_unknown(command, argc, argv);