timezone.h 489 B

123456789101112131415
  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_TIMEZONE "timezone"
  6. #define TOTP_CLI_COMMAND_TIMEZONE_ALT "tz"
  7. void totp_cli_command_timezone_handle(PluginState* plugin_state, FuriString* args, Cli* cli);
  8. #ifdef TOTP_CLI_RICH_HELP_ENABLED
  9. void totp_cli_command_timezone_docopt_commands();
  10. void totp_cli_command_timezone_docopt_usage();
  11. void totp_cli_command_timezone_docopt_arguments();
  12. #endif