mirror of
https://github.com/netbox-community/netbox.git
synced 2026-04-01 07:03:22 +02:00
9 lines
139 B
Python
9 lines
139 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ExtrasConfig(AppConfig):
|
|
name = "extras"
|
|
|
|
def ready(self):
|
|
import extras.signals
|