network_inventory/inventory/models/__init__.py
2020-01-11 17:11:45 +01:00

13 lines
602 B
Python

from .computer import (Computer, ComputerCpuRelation, ComputerDiskRelation,
ComputerRamRelation,
ComputerSoftwareRelation)
from .cpu import CpuArchitecture, CpuManufacturer, Cpu
from .disk import DiskType, Disk
from .license import (License, ComputerLicense, UserLicense,
LicenseWithComputer, LicenseWithUser)
from .os import OperatingSystem
from .raid import DisksInRaid, RaidType, Raid
from .ram import RamType, Ram
from .software import SoftwareArchitecture, SoftwareCategory, Software
from .warranty import Warranty, WarrantyType