Common: Add HardwareID type

This commit is contained in:
Mike Salvatore 2022-08-22 10:01:24 -04:00
parent 15bd9a31c6
commit f418571d93
2 changed files with 4 additions and 0 deletions

View File

@ -3,3 +3,4 @@ Used for a common things between agent and island
"""
from .di_container import DIContainer, UnresolvableDependencyError
from .operating_system import OperatingSystem
from . import types

3
monkey/common/types.py Normal file
View File

@ -0,0 +1,3 @@
from pydantic import PositiveInt
HardwareID = PositiveInt