lib.itmens/games/apps.py
2022-01-17 14:57:29 -05:00

10 lines
226 B
Python

from django.apps import AppConfig
class GamesConfig(AppConfig):
name = 'games'
def ready(self):
from common.index import Indexer
from .models import Game
Indexer.update_model_indexable(Game)