mirror of
https://github.com/lune-org/lune.git
synced 2024-12-13 21:40:40 +00:00
12 lines
293 B
Lua
12 lines
293 B
Lua
local roblox = require("@lune/roblox")
|
|
|
|
local game = roblox.Instance.new("DataModel")
|
|
local http = game:GetService("HttpService") :: any
|
|
|
|
roblox.implementMethod("HttpService", "GetAsync", function()
|
|
-- TODO: Fill in method body
|
|
end)
|
|
|
|
-- TODO: Fill in rest of test cases here
|
|
|
|
http:GetAsync()
|