mirror of
https://github.com/evgen-app/chess_rpg_backend.git
synced 2024-11-25 19:14:02 +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
|