Ready to build JWT

This commit is contained in:
2024-09-21 20:16:44 +02:00
parent 5db7593a4f
commit 561c49226b
5 changed files with 58 additions and 2 deletions

9
esp32_device/main/jwt.c Normal file
View File

@ -0,0 +1,9 @@
#include <string.h>
#include "jwt.h"
char *jwt_gen(cJSON *payload)
{
return strdup("TODO:)");
}