move.h 461 B

123456789101112131415
  1. #pragma once
  2. #include <cli/cli.h>
  3. #include "../../../types/plugin_state.h"
  4. #include "../../../config/app/config.h"
  5. #define TOTP_CLI_COMMAND_MOVE "move"
  6. #define TOTP_CLI_COMMAND_MOVE_ALT "mv"
  7. void totp_cli_command_move_handle(PluginState* plugin_state, FuriString* args, Cli* cli);
  8. #ifdef TOTP_CLI_RICH_HELP_ENABLED
  9. void totp_cli_command_move_docopt_commands();
  10. void totp_cli_command_move_docopt_usage();
  11. void totp_cli_command_move_docopt_arguments();
  12. #endif