From 10f49fe64bb9516315c0de801e53d0f508a89759 Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Mon, 13 Apr 2026 14:29:08 +0200 Subject: [PATCH] :memo: Clarify RegisterHTTP global registration intent // // Registers the http module in Lua state as a global, // aligning with obicontext and BioSequence conventions. The change ensures consistent module exposure across Lua environments. --- pkg/obilua/luahttp.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/obilua/luahttp.go b/pkg/obilua/luahttp.go index 5e85068..07d80e6 100644 --- a/pkg/obilua/luahttp.go +++ b/pkg/obilua/luahttp.go @@ -15,7 +15,8 @@ var _httpClient = &http.Client{ Timeout: httpClientTimeout, } -// RegisterHTTP registers the http module in the Lua state. +// RegisterHTTP registers the http module in the Lua state as a global, +// consistent with obicontext and BioSequence. // // Exposes: //