From 23df4838ff652d48ecf21f1885ac99b1c23a3db1 Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Mon, 12 Jan 2026 18:47:23 -0600 Subject: [PATCH] Add path arguments I forgot :( --- src/runtime_methods/net.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/runtime_methods/net.cpp b/src/runtime_methods/net.cpp index bf697b9..3ccef78 100644 --- a/src/runtime_methods/net.cpp +++ b/src/runtime_methods/net.cpp @@ -295,6 +295,7 @@ namespace Tesses::CrossLang else if(key == "getQueryParams") return TNativeObject::Create(ls, &ctx->queryParams,this); else if(key == "getRequestHeaders") return TNativeObject::Create(ls, &ctx->requestHeaders,this); else if(key == "getResponseHeaders") return TNativeObject::Create(ls, &ctx->responseHeaders,this); + else if(key == "getPathArguments") return TNativeObject::Create(ls,&ctx->pathArguments, this); else if(key == "GetStream") return ctx->GetStream(); else if(key == "OpenRequestStream") return ctx->OpenRequestStream(); else if(key == "OpenResponseStream") return ctx->OpenResponseStream();