mirror of
https://git.phreedom.club/localhost_frssoft/fediauth
synced 2025-03-15 22:21:22 +00:00
13 lines
233 B
Lua
13 lines
233 B
Lua
|
local MP = minetest.get_modpath("otp")
|
||
|
|
||
|
otp = {
|
||
|
-- mod storage
|
||
|
storage = minetest.get_mod_storage(),
|
||
|
|
||
|
-- baseXX functions
|
||
|
basexx = loadfile(MP.."/basexx.lua")()
|
||
|
}
|
||
|
|
||
|
dofile(MP.."/functions.lua")
|
||
|
dofile(MP.."/test.lua")
|