mirror of
https://github.com/evgen-app/chess_rpg_backend.git
synced 2024-11-22 17:47:11 +03:00
10 lines
190 B
Python
10 lines
190 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class GameConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "game"
|
|
|
|
def ready(self):
|
|
import game.signals
|