mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
16 lines
367 B
Python
16 lines
367 B
Python
|
from extras.plugins import PluginConfig
|
||
|
|
||
|
|
||
|
class DummyPluginConfig(PluginConfig):
|
||
|
name = 'extras.tests.dummy_plugin'
|
||
|
verbose_name = 'Dummy plugin'
|
||
|
version = '0.0'
|
||
|
description = 'For testing purposes only'
|
||
|
base_url = 'dummy-plugin'
|
||
|
middleware = [
|
||
|
'extras.tests.dummy_plugin.middleware.DummyMiddleware'
|
||
|
]
|
||
|
|
||
|
|
||
|
config = DummyPluginConfig
|