11 lines
265 B
Python
11 lines
265 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ModerationConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "apps.moderation"
|
|
verbose_name = "内容安全"
|
|
|
|
def ready(self) -> None:
|
|
from . import signals # noqa: F401
|