23 lines
359 B
Lua
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
|