fleshing out package workflow

This commit is contained in:
Chris Punches
2025-03-12 20:05:59 -04:00
parent 1a97621a53
commit 80de44b1b6
5 changed files with 22 additions and 46 deletions

View File

@@ -5,15 +5,15 @@
#include <filesystem>
/**
* @brief Handler for the create command
* @brief Handler for the stage command
*
* Processes arguments and creates a DPM package.
* Processes arguments and stages a DPM package.
*
* @param argc Number of arguments
* @param argv Array of arguments
* @return 0 on success, non-zero on failure
*/
int cmd_create(int argc, char** argv);
int cmd_stage(int argc, char** argv);
/**
* @brief Handler for the help command
@@ -36,4 +36,4 @@ int cmd_help(int argc, char** argv);
* @param argv Array of arguments
* @return 1 to indicate failure
*/
int cmd_unknown(const char* command, int argc, char** argv);
int cmd_unknown(const char* command, int argc, char** argv);