SSOwat/init.lua
2013-10-16 20:37:12 +02:00

16 lines
286 B
Lua

-- Load libraries
json = require "json"
lualdap = require "lualdap"
math = require "math"
-- Set random key
math.randomseed(os.time())
srvkey = math.random(1111111, 9999999)
-- Shared table
tokens = {}
cache = {}
connections = {}
-- Path of the configuration
conf_path = 'conf.json'