forked from p15670423/monkey
Common: Add HardwareID type
This commit is contained in:
parent
15bd9a31c6
commit
f418571d93
|
@ -3,3 +3,4 @@ Used for a common things between agent and island
|
||||||
"""
|
"""
|
||||||
from .di_container import DIContainer, UnresolvableDependencyError
|
from .di_container import DIContainer, UnresolvableDependencyError
|
||||||
from .operating_system import OperatingSystem
|
from .operating_system import OperatingSystem
|
||||||
|
from . import types
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
from pydantic import PositiveInt
|
||||||
|
|
||||||
|
HardwareID = PositiveInt
|
Loading…
Reference in New Issue