mirror of
https://github.com/chibicitiberiu/ytsm.git
synced 2024-02-24 05:43:31 +00:00
10 lines
219 B
Python
10 lines
219 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class YtManagerAppConfig(AppConfig):
|
|
name = 'YtManagerApp'
|
|
|
|
def ready(self):
|
|
from .management import SubscriptionManager
|
|
SubscriptionManager.start_scheduler()
|