1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2025-11-12 17:09:16 +01:00
lodel2_mirror/lodel/plugins/ram_session/__init__.py

15 lines
367 B
Python

from lodel.validator.validator Validator
__plugin_name__ = 'ram_session'
__version__ = [0,0,1]
__plugin_type__ = 'session_handler'
__loader__ = 'main.py'
__author__ = "Lodel2 dev team"
__fullname__ = "RAM Session Store Plugin"
CONFSPEC = {
'lodel2.sessions':{
'expiration': (900, Validator('int')),
'tokensize': (512, Validator('int')),
}
}