add.h 456 B

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