cli.h 282 B

1234567891011
  1. #pragma once
  2. #include <cli/cli.h>
  3. #include "../types/plugin_state.h"
  4. typedef struct {
  5. PluginState* plugin_state;
  6. } TotpCliContext;
  7. TotpCliContext* totp_cli_register_command_handler(PluginState* plugin_state);
  8. void totp_cli_unregister_command_handler(TotpCliContext* context);