9 lines
175 B
Python
9 lines
175 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ApiConfig(AppConfig):
|
|
name = 'right_tree.api'
|
|
|
|
def ready(self):
|
|
# flake8: noqa
|
|
import right_tree.api.signals
|