“test.lua”, `
test={}
– Get the mean value of a table
function test.printWorld(ctx)
print(“Hello World”)
end
print(“Test Module Loaded”)
return test
http-invoke.lua", local nakama = require("nakama") local test = require("test") nakama.register_http(test.printWorld, "test/helloworld")
)
nk.register_http(“/test”, handle_request)
i can’t find the doc.