Files
packages/utils/mt5311/files/init.lua
jasle f4d74e1b2f mt5311: make package importable as lua module
Added init.lua to make the program importable by other lua programs.

Signed-off-by: jasle <jasle@riseup.net>
2024-03-04 00:28:42 +00:00

12 lines
197 B
Lua

-- mt5311 init file, makes mt5311 importable as module
local dir = '/usr/lib/lua/mt5311/'
local file = dir .. 'ebm.lua'
arg={}
arg[0] = file
mt5311 = assert(loadfile(file))(arg)
return mt5311