Request static struct
method - string
namespace - string
auto r = Request("GET", "konnex-engine"); assert(is(typeof(r) == Request)); assert(is(typeof(r.method) == string)); assert(is(typeof(r.namespace) == string)); assert(r.method == "GET"); assert(r.namespace == "konnex-engine");
See Implementation
Request static struct