9 lines
151 B
Python
9 lines
151 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class AttendanceConfig(AppConfig):
|
|
name = 'attendance'
|
|
|
|
def ready(self):
|
|
import attendance.signals
|