-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.dot
20 lines (20 loc) · 1.48 KB
/
packages.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
digraph "packages" {
rankdir=BT
charset="utf-8"
"hubitatcontrol" [color="black", label=<hubitatcontrol>, shape="box", style="solid"];
"hubitatcontrol.__main__" [color="black", label=<hubitatcontrol.__main__>, shape="box", style="solid"];
"hubitatcontrol.environment" [color="black", label=<hubitatcontrol.environment>, shape="box", style="solid"];
"hubitatcontrol.generic" [color="black", label=<hubitatcontrol.generic>, shape="box", style="solid"];
"hubitatcontrol.hub" [color="black", label=<hubitatcontrol.hub>, shape="box", style="solid"];
"hubitatcontrol.lights" [color="black", label=<hubitatcontrol.lights>, shape="box", style="solid"];
"hubitatcontrol.sensors" [color="black", label=<hubitatcontrol.sensors>, shape="box", style="solid"];
"hubitatcontrol" -> "hubitatcontrol.generic" [arrowhead="open", arrowtail="none"];
"hubitatcontrol" -> "hubitatcontrol.hub" [arrowhead="open", arrowtail="none"];
"hubitatcontrol" -> "hubitatcontrol.lights" [arrowhead="open", arrowtail="none"];
"hubitatcontrol" -> "hubitatcontrol.sensors" [arrowhead="open", arrowtail="none"];
"hubitatcontrol.__main__" -> "hubitatcontrol" [arrowhead="open", arrowtail="none"];
"hubitatcontrol.environment" -> "hubitatcontrol.sensors" [arrowhead="open", arrowtail="none"];
"hubitatcontrol.generic" -> "hubitatcontrol.hub" [arrowhead="open", arrowtail="none"];
"hubitatcontrol.lights" -> "hubitatcontrol.generic" [arrowhead="open", arrowtail="none"];
"hubitatcontrol.sensors" -> "hubitatcontrol.hub" [arrowhead="open", arrowtail="none"];
}