(l *lua.LState)
| 202 | } |
| 203 | |
| 204 | func luaContextGetUrl(l *lua.LState) int { |
| 205 | ctx := luaCheckContext(l) |
| 206 | l.Push(lua.LString(ctx.Request.URL.String())) |
| 207 | return 1 |
| 208 | } |
| 209 | |
| 210 | func luaContextGetBody(l *lua.LState) int { |
| 211 | ctx := luaCheckContext(l) |
nothing calls this directly
no test coverage detected