7 lines
101 B
Lua
7 lines
101 B
Lua
local M = {}
|
|
|
|
function M.plugin_should_be_enabled()
|
|
print("Plugin should be enabled")
|
|
end
|
|
|
|
return M
|