mirror of
https://git.phreedom.club/localhost_frssoft/fediauth.git
synced 2024-11-16 21:23:18 +00:00
20 lines
400 B
Lua
20 lines
400 B
Lua
local MP = minetest.get_modpath("otp")
|
|
|
|
otp = {
|
|
-- mod storage
|
|
storage = minetest.get_mod_storage(),
|
|
|
|
-- baseXX functions
|
|
basexx = loadfile(MP.."/basexx.lua")(),
|
|
|
|
-- qr code
|
|
qrcode = loadfile(MP.."/qrencode.lua")().qrcode
|
|
}
|
|
|
|
dofile(MP.."/functions.lua")
|
|
dofile(MP.."/onboard.lua")
|
|
|
|
if minetest.get_modpath("mtt") and mtt.enabled then
|
|
dofile(MP.."/functions.spec.lua")
|
|
end
|