Partially implements #4 Based on @erichester76's https://github.com/ICTU/netbox_slm/pull/44 Signed-off-by: wkoot <3715211+wkoot@users.noreply.github.com> Co-authored-by: Eric Hester <eric.hester@umbrella.tech>
13 lines
544 B
Python
13 lines
544 B
Python
from .software_license import SoftwareLicenseForm, SoftwareLicenseFilterForm, SoftwareLicenseBulkImportForm
|
|
from .software_product import SoftwareProductForm, SoftwareProductFilterForm, SoftwareProductBulkImportForm
|
|
from .software_product_installation import (
|
|
SoftwareProductInstallationForm,
|
|
SoftwareProductInstallationFilterForm,
|
|
SoftwareProductInstallationBulkImportForm,
|
|
)
|
|
from .software_product_version import (
|
|
SoftwareProductVersionForm,
|
|
SoftwareProductVersionFilterForm,
|
|
SoftwareProductVersionBulkImportForm,
|
|
)
|