mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
* 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
10 lines
265 B
Python
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)
|