cpp-jwt/include/jwt/test/test_jwt_object.cc
2017-11-21 13:47:26 +05:30

16 lines
318 B
C++

#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;
}