mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-14 21:23:29 +01:00
10 lines
203 B
Python
10 lines
203 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class RulesConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "apps.rules"
|
|
|
|
def ready(self):
|
|
import apps.rules.signals
|