mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2025-12-21 03:29:22 +01:00
13 lines
348 B
Lua
13 lines
348 B
Lua
local shell = require("shell")
|
|
local github = {}
|
|
|
|
-----------------------------------------------------------------------------------------------
|
|
|
|
function github.get(url, path)
|
|
shell.execute("github fast " .. url .. " " .. path)
|
|
end
|
|
|
|
-----------------------------------------------------------------------------------------------
|
|
|
|
return github
|