2020-08-20 07:38:42 +00:00
|
|
|
from django.apps import AppConfig
|
2020-11-18 07:43:57 +00:00
|
|
|
from . import tasks
|
2020-08-20 07:38:42 +00:00
|
|
|
|
|
|
|
class PollsConfig(AppConfig):
|
|
|
|
name = 'polls'
|
2020-11-18 07:43:57 +00:00
|
|
|
|
|
|
|
def ready(self):
|
2020-11-18 09:48:44 +00:00
|
|
|
pass
|