This commit is contained in:
u80864958
2024-10-04 22:25:53 +02:00
commit 19dfa6b663
3 changed files with 31 additions and 0 deletions

12
lua/timer/init.lua Normal file
View 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