init
This commit is contained in:
12
lua/timer/init.lua
Normal file
12
lua/timer/init.lua
Normal file
@ -0,0 +1,12 @@
|
||||
-- Creates an object for the module. All of the module's
|
||||
-- functions are associated with this object, which is
|
||||
-- returned when the module is called with `require`.
|
||||
local M = {}
|
||||
|
||||
function M.greet()
|
||||
print("Hello World")
|
||||
end
|
||||
|
||||
-- Routes calls made to this module to functions in the
|
||||
-- plugin's other modules.
|
||||
return M
|
Reference in New Issue
Block a user