mirror of
https://github.com/more-tech4-magnum-opus/backend.git
synced 2024-11-21 19:16:33 +03:00
10 lines
208 B
Python
10 lines
208 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class BlockchainConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "blockchain"
|
|
|
|
def ready(self):
|
|
import blockchain.signals
|