mirror of
https://github.com/Django-LiveView/demo-doom
synced 2026-01-08 06:13:40 +01:00
11 lines
271 B
Python
11 lines
271 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ViewerConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "viewer"
|
|
|
|
def ready(self):
|
|
"""Import liveview handlers when app is ready"""
|
|
from viewer.liveview_components import doom_streamer # noqa
|