10 lines
157 B
Python
10 lines
157 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class GestiojeuxAuthConfig(AppConfig):
|
||
|
name = 'gestiojeux_auth'
|
||
|
|
||
|
def ready(self):
|
||
|
from . import signals
|
||
|
|