10 lines
153 B
Python
10 lines
153 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class RestreamConfig(AppConfig):
|
||
|
name = 'restream'
|
||
|
|
||
|
|
||
|
def ready(self):
|
||
|
import restream.signals #noqa
|