Files
cdtestplant_v1/apps/createDocument/apps.py
2025-04-29 18:09:00 +08:00

10 lines
280 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
from django.apps import AppConfig
class CreatedocumentConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'apps.createDocument'
# 在app准备好时候执行的代码以后放async、signal等
def ready(self):
pass