fediauth/init.lua

21 lines
424 B
Lua
Raw Normal View History

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