openmedialibrary/oml/state.py

17 lines
256 B
Python
Raw Normal View History

2014-05-04 19:26:43 +02:00
websockets = []
nodes = False
tasks = False
2014-05-04 19:26:43 +02:00
main = None
online = False
2014-05-19 20:12:02 +02:00
host = None
2014-05-04 19:26:43 +02:00
2014-05-17 02:14:15 +02:00
activity = {}
2014-05-04 19:26:43 +02:00
def user():
import settings
import user.models
return user.models.User.get_or_create(settings.USER_ID)
2014-08-09 18:14:14 +02:00
from threading import local
db = local()