mirror of
https://github.com/arun11299/cpp-jwt.git
synced 2025-05-15 01:08:31 +00:00
16 lines
318 B
C++
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;
|
|
}
|