mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-07-10 18:41:45 -04:00
7 lines
302 B
Python
7 lines
302 B
Python
# -*- coding: utf-8 -*-
|
|
""" this package contains code related to Sessions.
|
|
In TWBlue, a session module defines everything a social network needs to be used in the program."""
|
|
from __future__ import unicode_literals
|
|
# let's define a global object for storing sessions across the program.
|
|
sessions = {}
|