netbox/netbox/extras/plugins/__init__.py
Jeremy Stretch 3f40ee5501
Closes #14036: Move extras.plugins to netbox.plugins (#14086)
* Move extras.plugins to netbox.plugins & add deprecation warnings

* Move plugin template tags from extras to utilities

* Move plugins tests from extras to netbox

* Add TODO reminders for v4.0
2023-10-20 11:24:08 -04:00

10 lines
265 B
Python

from .navigation import *
from .registration import *
from .templates import *
from .utils import *
from netbox.plugins import PluginConfig
# TODO: Remove in v4.0
warnings.warn(f"{__name__} is deprecated. Import from netbox.plugins instead.", DeprecationWarning)