fediauth/init.lua

25 lines
515 B
Lua
Raw Normal View History

2023-01-28 11:04:14 +00:00
local MP = minetest.get_modpath("otp")
2023-01-29 12:49:00 +00:00
-- sanity checks
assert(type(minetest.encode_png) == "function")
2023-01-28 11:04:14 +00:00
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-29 12:16:32 +00:00
dofile(MP.."/join.lua")
2023-01-29 11:13:50 +00:00
dofile(MP.."/privs.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