11 lines
242 B
Python
11 lines
242 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class UsersConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'users'
|
|
|
|
|
|
def ready(self):
|
|
from users.tasks import start_scheduler
|
|
start_scheduler() |