15 lines
358 B
Python
15 lines
358 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class PyScadaEMSConfig(AppConfig):
|
|
name = "pyscada.influxdb"
|
|
verbose_name = _("PyScada Influx Database")
|
|
default_auto_field = "django.db.models.AutoField"
|
|
|
|
def ready(self):
|
|
pass
|