10 lines
128 B
Lua
10 lines
128 B
Lua
local req = {
|
|
"layout",
|
|
"notifications",
|
|
"scratchpad",
|
|
"volume",
|
|
}
|
|
|
|
for _, x in pairs(req) do
|
|
require(... .. "." .. x)
|
|
end
|