fmartingr
/
jeeves
Archived
1
0
Fork 0
This repository has been archived on 2021-02-14. You can view files and clone it, but cannot push or open issues or pull requests.
jeeves/jeeves/db/apps.py

11 lines
194 B
Python

from django.apps import AppConfig
from jeeves.core.registry import TaskRegistry
class DBAppConfig(AppConfig):
name = "jeeves.db"
def ready(self):
TaskRegistry.autodiscover()