mirror of
https://git.tesses.org/tesses50/tessesframework.git
synced 2026-06-01 18:15:31 +00:00
Overhaul cmake configuration, add console api, fix http code that caused issues with cgi-bin
This commit is contained in:
@@ -2,12 +2,10 @@
|
||||
|
||||
using namespace Tesses::Framework::Serialization::Json;
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
int main(int argc, char **argv) {
|
||||
auto json = Json::Decode("\"\\uD83D\\uDE44\"");
|
||||
std::string str;
|
||||
if(TryGetJToken(json,str))
|
||||
{
|
||||
if (TryGetJToken(json, str)) {
|
||||
std::cout << str << std::endl;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user