Skip to content

Commit

Permalink
add core app
Browse files Browse the repository at this point in the history
  • Loading branch information
Reagent992 committed Jan 24, 2024
1 parent 83824b1 commit 7488cb0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Empty file added core/__init__.py
Empty file.
13 changes: 13 additions & 0 deletions core/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from django.apps import AppConfig


class CoreConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "core"

def ready(self):
"""Добавление signals.py."""
try:
import core.signals # noqa
except ImportError:
pass

0 comments on commit 7488cb0

Please sign in to comment.