delete.h 522 B

12345678910111213141516
  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_DELETE "delete"
  6. #define TOTP_CLI_COMMAND_DELETE_ALT "rm"
  7. void totp_cli_command_delete_handle(PluginState* plugin_state, FuriString* args, Cli* cli);
  8. #ifdef TOTP_CLI_RICH_HELP_ENABLED
  9. void totp_cli_command_delete_docopt_commands();
  10. void totp_cli_command_delete_docopt_usage();
  11. void totp_cli_command_delete_docopt_arguments();
  12. void totp_cli_command_delete_docopt_options();
  13. #endif