add river config

This commit is contained in:
Alexander Navarro 2024-10-29 17:00:53 -03:00
parent 6af792a0e9
commit ffa2bac00b
Signed by untrusted user who does not match committer: anavarro
GPG key ID: 6426043E9FA3E3B5
3 changed files with 89 additions and 0 deletions

View file

@ -0,0 +1,19 @@
local River = {}
River.__index = River
function River:new(new)
local obj = new or {}
setmetatable(obj, self)
self.__index = self
return obj
end
function River:exec(args)
print("Executing: " .. args)
os.execute(args)
end
return River