mirror of
https://github.com/AudebertAdrien/ft_transcendence.git
synced 2026-03-28 10:23:52 +01:00
6 lines
118 B
Python
6 lines
118 B
Python
from django.dispatch import Signal
|
|
|
|
user_logged_in = Signal()
|
|
user_login_failed = Signal()
|
|
user_logged_out = Signal()
|