mirror of
https://github.com/evgen-app/chess_rpg_backend.git
synced 2025-02-07 23:20:42 +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
|