Files
computercraft/lib/ccttp.lua
2023-10-09 06:54:35 -04:00

15 lines
239 B
Lua

-- Desc: CCTTP Networking Library
-- Auth: Layla Manley
-- Link: https://gitea.layla.gg/layla/computercraft
local interface Response
status: number
body: string
end
function get(url: string): Response:
return true
end