mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-13 03:49:36 -06:00
12 lines
216 B
Python
12 lines
216 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CircuitsConfig(AppConfig):
|
|
name = "circuits"
|
|
verbose_name = "Circuits"
|
|
|
|
def ready(self):
|
|
import circuits.signals
|