add.h 537 B

1234567891011121314151617
  1. #pragma once
  2. #include <cli/cli.h>
  3. #include "../../../config/app/config.h"
  4. #include "../../../types/plugin_state.h"
  5. #define TOTP_CLI_COMMAND_ADD "add"
  6. #define TOTP_CLI_COMMAND_ADD_ALT "mk"
  7. #define TOTP_CLI_COMMAND_ADD_ALT2 "new"
  8. void totp_cli_command_add_handle(PluginState* plugin_state, FuriString* args, Cli* cli);
  9. #ifdef TOTP_CLI_RICH_HELP_ENABLED
  10. void totp_cli_command_add_docopt_commands();
  11. void totp_cli_command_add_docopt_usage();
  12. void totp_cli_command_add_docopt_arguments();
  13. void totp_cli_command_add_docopt_options();
  14. #endif