mirror of
https://github.com/Hilbis/Hilbish
synced 2025-04-04 20:53:24 +00:00
12 lines
203 B
Lua
12 lines
203 B
Lua
--- @meta
|
|
|
|
local snail = {}
|
|
|
|
--- Creates a new Snail instance.
|
|
function snail.new() end
|
|
|
|
--- Runs a shell command. Works the same as `hilbish.run`.
|
|
function snail:run(command, streams) end
|
|
|
|
return snail
|