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
Raw Normal View History

2019-09-23 21:11:26 +00:00
from django.apps import AppConfig
2019-10-03 11:01:21 +00:00
from jeeves.core.registry import TaskRegistry
2019-09-23 21:11:26 +00:00
2019-09-29 12:30:19 +00:00
2019-10-01 18:20:37 +00:00
class DBAppConfig(AppConfig):
name = "jeeves.db"
2019-09-29 12:30:19 +00:00
def ready(self):
TaskRegistry.autodiscover()