computercraft/lib/ccttp.lua

23 lines
359 B
Lua
Raw Normal View History

2023-10-09 12:54:35 +02:00
-- Desc: CCTTP Networking Library
-- Auth: Layla Manley
-- Link: https://gitea.layla.gg/layla/computercraft
2023-10-09 13:01:31 +02:00
Response = {
status = 0,
body = "",
headers = {}
}
function Response:new(o)
o = o or {}
setmetatable(o, self)
self.__index = self
return o
2023-10-09 12:54:35 +02:00
end
2023-10-09 13:06:30 +02:00
function get(url, headers)
headers = headers or {}
2023-10-09 12:54:35 +02:00
return true
end