暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 394B

123456789101112131415
  1. from lodel.settings.validator import SettingValidator
  2. __plugin_name__ = 'ram_session'
  3. __version__ = [0,0,1]
  4. __plugin_type__ = 'session_handler'
  5. __loader__ = 'main.py'
  6. __author__ = "Lodel2 dev team"
  7. __fullname__ = "RAM Session Store Plugin"
  8. CONFSPEC = {
  9. 'lodel2.sessions':{
  10. 'expiration': (900, SettingValidator('int')),
  11. 'tokensize': (512, SettingValidator('int')),
  12. }
  13. }