14 lines
392 B
C
14 lines
392 B
C
#ifndef OPEN_WING_AGENT_H
|
|
#define OPEN_WING_AGENT_H
|
|
|
|
#include "config.h"
|
|
#include "nostr_handler.h"
|
|
|
|
int agent_init(didactyl_config_t* config, const char* system_context);
|
|
void agent_on_message(const char* sender_pubkey_hex,
|
|
const char* message,
|
|
didactyl_sender_tier_t tier,
|
|
void* user_data);
|
|
void agent_cleanup(void);
|
|
|
|
#endif |