Nenhuma Descrição

utils.py 186B

1234567891011
  1. import threading
  2. _thread_locals = threading.local()
  3. def set_current_user(user):
  4. _thread_locals.user=user
  5. def get_current_user():
  6. return getattr(_thread_locals, 'user', None)