8 lines
161 B
Python
8 lines
161 B
Python
![]() |
import threading
|
||
|
_local = threading.local()
|
||
|
|
||
|
def set_current_user(user):
|
||
|
_local.user = user
|
||
|
|
||
|
def get_current_user():
|
||
|
return getattr(_local, "user", None)
|