mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-21 04:11:48 +03:00
12 lines
315 B
C
12 lines
315 B
C
#pragma once
|
|
|
|
#include <cli/cli.h>
|
|
#include "../../../types/plugin_state.h"
|
|
|
|
#define TOTP_CLI_COMMAND_LIST "list"
|
|
#define TOTP_CLI_COMMAND_LIST_ALT "ls"
|
|
|
|
void totp_cli_command_list_handle(PluginState* plugin_state, Cli* cli);
|
|
void totp_cli_command_list_docopt_commands();
|
|
void totp_cli_command_list_docopt_usage();
|