9 lines
184 B
Python
9 lines
184 B
Python
|
|
from django.apps import AppConfig
|
||
|
|
|
||
|
|
|
||
|
|
class DeviceHubConfig(AppConfig):
|
||
|
|
default_auto_field = "django.db.models.BigAutoField"
|
||
|
|
name = "device_hub"
|
||
|
|
verbose_name = "Device Hub"
|
||
|
|
|