[ADD/WIP] Add some HTTP request code

We can now *register* users!
This commit is contained in:
LDA 2024-06-13 09:35:57 +02:00
commit 0fa95c2d14
12 changed files with 320 additions and 11 deletions

8
src/include/Matrix.h Normal file
View file

@ -0,0 +1,8 @@
#ifndef PARSEE_MATRIX_H
#define PARSEE_MATRIX_H
#include <Cytoplasm/Json.h>
/* Creates an error message JSON, with the specified code and message. */
extern HashMap * MatrixCreateError(char *err, char *msg);
#endif