delete.h 443 B

12345678910111213
  1. #pragma once
  2. #include <cli/cli.h>
  3. #include "../../../../types/plugin_state.h"
  4. #define TOTP_CLI_COMMAND_DELETE "delete"
  5. #define TOTP_CLI_COMMAND_DELETE_ALT "rm"
  6. void totp_cli_command_delete_handle(PluginState* plugin_state, FuriString* args, Cli* cli);
  7. void totp_cli_command_delete_docopt_commands();
  8. void totp_cli_command_delete_docopt_usage();
  9. void totp_cli_command_delete_docopt_arguments();
  10. void totp_cli_command_delete_docopt_options();