We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6648b1 commit bf9b39cCopy full SHA for bf9b39c
1 file changed
rerobots/types.py
@@ -26,12 +26,17 @@ class CamImage(TypedDict, total=False):
26
data: str
27
28
29
+class PortForward(TypedDict, total=False):
30
+ ipv4: str
31
+ port: int
32
+
33
34
class InstanceInfo(TypedDict, total=False):
35
id: str
36
deployment: str
37
type: str
38
status: InstanceStatus
39
region: str
40
starttime: str
- fwd: dict
41
+ fwd: PortForward
42
hostkeys: list[str]
0 commit comments