list.h 414 B

1234567891011121314
  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_LIST "list"
  6. #define TOTP_CLI_COMMAND_LIST_ALT "ls"
  7. void totp_cli_command_list_handle(PluginState* plugin_state, FuriString* args, Cli* cli);
  8. #ifdef TOTP_CLI_RICH_HELP_ENABLED
  9. void totp_cli_command_list_docopt_commands();
  10. void totp_cli_command_list_docopt_usage();
  11. #endif