7 lines
80 B
Lua
7 lines
80 B
Lua
local M = {}
|
|
|
|
M.setup = function(opts)
|
|
print("Setup goes here")
|
|
end
|
|
|
|
return M
|