fediauth/init.lua

21 lines
424 B
Lua
Raw Normal View History

2023-01-28 11:04:14 +00:00
local MP = minetest.get_modpath("otp")
otp = {
-- mod storage
storage = minetest.get_mod_storage(),
-- baseXX functions
2023-01-28 16:49:12 +00:00
basexx = loadfile(MP.."/basexx.lua")(),
-- qr code
qrcode = loadfile(MP.."/qrencode.lua")().qrcode
2023-01-28 11:04:14 +00:00
}
dofile(MP.."/functions.lua")
2023-01-28 19:30:44 +00:00
dofile(MP.."/onboard.lua")
2023-01-28 19:50:40 +00:00
dofile(MP.."/auth.lua")
2023-01-28 16:25:39 +00:00
if minetest.get_modpath("mtt") and mtt.enabled then
dofile(MP.."/functions.spec.lua")
2023-01-28 18:55:46 +00:00
end