mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-09 05:49:09 -07:00
14 lines
269 B
C
14 lines
269 B
C
#pragma once
|
|
|
|
#include <cli/cli.h>
|
|
#include <furi/core/string.h>
|
|
#include "../types/plugin_state.h"
|
|
|
|
#define PLUGIN_APP_ID "totp_cli"
|
|
#define PLUGIN_API_VERSION 1
|
|
|
|
typedef struct {
|
|
const char* name;
|
|
void (*handle)(PluginState*, FuriString*, Cli*);
|
|
} CliPlugin;
|