mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
11 lines
193 B
11 lines
193 B
import importlib
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ApiConfig(AppConfig):
|
|
name = 'api'
|
|
verbose_name = 'Api'
|
|
|
|
def ready(self):
|
|
importlib.import_module('api.signals')
|