9 lines
141 B
Python
9 lines
141 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class RtmpConfig(AppConfig):
|
||
|
name = 'rtmp'
|
||
|
|
||
|
def ready(self):
|
||
|
import rtmp.signals # noqa
|