mirror of
https://github.com/Hopiu/django.git
synced 2026-04-12 02:51:10 +00:00
7 lines
178 B
Python
7 lines
178 B
Python
from django.contrib.sessions.backends.base import SessionBase
|
|
|
|
|
|
class SessionStore(SessionBase):
|
|
"""Session store without support for clearing expired sessions."""
|
|
|
|
pass
|