Overhaul cmake configuration, add console api, fix http code that caused issues with cgi-bin
Some checks failed
Build and Deploy on Tag / 🔨 Build for Arch Linux/Static Builds (push) Failing after 45s
Build and Deploy on Tag / 🔨 Build win32 and update the tap 🍺 (push) Has been cancelled

This commit is contained in:
2026-05-27 03:02:16 -05:00
parent 266ef5f830
commit 8413c67ec6
177 changed files with 20088 additions and 17948 deletions

View File

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