lib.itmens/games/apps.py

11 lines
226 B
Python
Raw Normal View History

2021-02-25 19:43:43 +01:00
from django.apps import AppConfig
class GamesConfig(AppConfig):
name = 'games'
2021-12-30 07:38:38 -05:00
def ready(self):
from common.index import Indexer
from .models import Game
Indexer.update_model_indexable(Game)