jwt_object design

This commit is contained in:
Arun M 2017-11-21 13:47:26 +05:30
parent 81e6b2392e
commit cb925fee3a
6 changed files with 372 additions and 0 deletions
include/jwt/test

View file

@ -0,0 +1,16 @@
#include <iostream>
#include "jwt/jwt.hpp"
void basic_jwt_object_test()
{
using namespace jwt::params;
jwt::jwt_object obj(payload({
{"a", "b"},
{"c", "d"}
}));
}
int main() {
basic_jwt_object_test();
return 0;
}