mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-02-22 17:12:00 +00:00
10 lines
229 B
Python
10 lines
229 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ApiConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "api"
|
|
|
|
def ready(self):
|
|
import api.signals # Add this line to import the signals.py
|