mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
12 lines
345 B
C
12 lines
345 B
C
|
#include <cli/cli_i.h>
|
||
|
|
||
|
static void nfc_cli_wrapper(Cli* cli, FuriString* args, void* context) {
|
||
|
cli_plugin_wrapper("nfc", cli, args, context);
|
||
|
}
|
||
|
|
||
|
void nfc_on_system_start(void) {
|
||
|
Cli* cli = furi_record_open(RECORD_CLI);
|
||
|
cli_add_command(cli, "nfc", CliCommandFlagDefault, nfc_cli_wrapper, NULL);
|
||
|
furi_record_close(RECORD_CLI);
|
||
|
}
|