9 lines
144 B
Python
9 lines
144 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class EveAuthConfig(AppConfig):
|
|
name = 'eve_auth'
|
|
|
|
def ready(self):
|
|
import eve_auth.signals
|