rename sv1.HandleLUA to sv1.handleLUA

This commit is contained in:
2025-07-30 12:50:12 +03:00
parent b97febc16e
commit bd02f079ab
2 changed files with 2 additions and 2 deletions

View File

@@ -24,5 +24,5 @@ func (h *HandlerV1) Handle(r *http.Request, req *rpc.RPCRequest) *rpc.RPCRespons
}
}
return h.HandleLUA(method, req)
return h.handleLUA(method, req)
}

View File

@@ -13,7 +13,7 @@ import (
lua "github.com/yuin/gopher-lua"
)
func (h *HandlerV1) HandleLUA(path string, req *rpc.RPCRequest) *rpc.RPCResponse {
func (h *HandlerV1) handleLUA(path string, req *rpc.RPCRequest) *rpc.RPCResponse {
L := lua.NewState()
defer L.Close()