[ADD/WIP] Create and use basic command parser

Still need to write the router.
This commit is contained in:
LDA 2024-06-28 22:34:28 +02:00
commit c4b7d1b92a
6 changed files with 220 additions and 12 deletions

View file

@ -9,6 +9,7 @@
#include <pthread.h>
#include <Command.h>
#include <XMPP.h>
typedef struct ParseeConfig {
@ -43,6 +44,7 @@ typedef struct ParseeConfig {
typedef struct ParseeData {
const ParseeConfig *config;
HttpRouter *router;
CommandRouter *handler;
XMPPComponent *jabber;