[ADD/WIP] Start receiptwerk

This commit is contained in:
LDA 2024-07-06 00:38:10 +02:00
commit 0fc0fdd6f4
9 changed files with 144 additions and 8 deletions

View file

@ -62,8 +62,9 @@ Main(void)
}
}
Log(LOG_NOTICE, "Creating JID table...");
Log(LOG_NOTICE, "Creating volatile tables...");
ParseeInitialiseJIDTable();
ParseeInitialiseHeadTable();
Log(LOG_NOTICE, "Setting up local Matrix user...");
ASRegisterUser(parsee_conf, parsee_conf->sender_localpart);
@ -112,6 +113,7 @@ end:
CronStop(cron);
CronFree(cron);
ParseeFreeData(conf.handlerArgs);
ParseeDestroyHeadTable();
ParseeDestroyJIDTable();
return 0;
}