Refactor command handlers for improved code organization and readability

This commit is contained in:
scawful
2024-08-31 09:56:11 -04:00
parent dc0d947e35
commit f682f22eab
6 changed files with 114 additions and 105 deletions

View File

@@ -8,10 +8,14 @@
#include <unordered_map>
#include <vector>
#include "absl/flags/flag.h"
#include "absl/status/status.h"
#include "app/core/constants.h"
#include "app/rom.h"
#include "cli/command_handler.h"
#include "cli/command.h"
ABSL_FLAG(bool, verbose, false, "Enable verbose output");
ABSL_FLAG(bool, debug, false, "Enable debug output");
namespace yaze {