NetTech2001 6a4610894e Final Details
Just fixing some text formatting.
2024-05-17 20:32:45 -06:00

17 lines
457 B
Python

from netbox.plugins import PluginConfig
class Config(PluginConfig):
name = 'netbox_interface_sync'
verbose_name = 'NetBox Interface Synchronization'
description = 'Syncing Device Interfaces with the Interfaces from Device Type for NetBox 4'
version = '0.4.1'
author = 'Keith Knowles'
author_email = 'mkknowles@outlook.com'
default_settings = {
'exclude_virtual_interfaces': True
}
config = Config