Files
computercraft/lib/ccttp.lua
2023-10-09 07:01:31 -04:00

24 lines
347 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: string): Response:
return true
end