network_inventory/inventory/models/__init__.py

13 lines
602 B
Python
Raw Normal View History

2019-06-10 21:56:21 +02:00
from .computer import (Computer, ComputerCpuRelation, ComputerDiskRelation,
ComputerRamRelation,
2019-06-10 21:56:21 +02:00
ComputerSoftwareRelation)
from .cpu import CpuArchitecture, CpuManufacturer, Cpu
from .disk import DiskType, Disk
2019-12-29 23:54:27 +01:00
from .license import (License, ComputerLicense, UserLicense,
LicenseWithComputer, LicenseWithUser)
2019-06-10 21:56:21 +02:00
from .os import OperatingSystem
from .raid import DisksInRaid, RaidType, Raid
2019-06-10 21:56:21 +02:00
from .ram import RamType, Ram
from .software import SoftwareArchitecture, SoftwareCategory, Software
from .warranty import Warranty, WarrantyType