computercraft/lib/ccttp.lua
2023-10-09 07:06:30 -04:00

23 lines
359 B
Lua

-- Desc: CCTTP Networking Library
-- Auth: Layla Manley
-- Link: https://gitea.layla.gg/layla/computercraft
Response = {
status = 0,
body = "",
headers = {}
}
function Response:new(o)
o = o or {}
setmetatable(o, self)
self.__index = self
return o
end
function get(url, headers)
headers = headers or {}
return true
end