wip - should change the name of manufacturers, maybe other classes than Server etc

This commit is contained in:
Solvik Blum 2019-08-02 18:39:05 +02:00
parent a598c3a68a
commit 94e0437427
8 changed files with 277 additions and 0 deletions

6
netbox_agent/__init__.py Normal file
View file

@ -0,0 +1,6 @@
from pkg_resources import get_distribution, DistributionNotFound
try:
__version__ = get_distribution(__name__).version
except DistributionNotFound:
pass