mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-01-19 00:40:42 -06:00
6 lines
262 B
Python
6 lines
262 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."""
|
|
# let's define a global object for storing sessions across the program.
|
|
sessions = {}
|