-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflow.dot
35 lines (30 loc) · 1.97 KB
/
flow.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
digraph g {
label="go install flow · golangleipzig.space · 02/2023" fontsize="10";
graph [fontname="AvantGarde-Book"];
node [fontname="AvantGarde-Book" shape="box" pad=0.7];
edge [fontname="AvantGarde-Book"];
"go install golangleipzig.space/clt23@latest" [style="filled" fillcolor="lightyellow"];
"golangleipzig.space/clt23" [label=<<FONT COLOR="darkgray">https://</FONT>golangleipzig.space/clt23<FONT COLOR="darkgray">?go-get=1</FONT>>];
"git clone" [label=<git clone <FONT COLOR="darkgray">https://...</FONT>>];
"meta" [label=<golangleipzig.space/clt23 git <B>github.com/golangleipzig/clt23</B><BR/><FONT COLOR="mediumpurple" POINT-SIZE="8"><meta name="go-import" content="..."></FONT>>];
"repo" [label=<<FONT COLOR="darkgray">https://</FONT>github.com/golang-leipzig/clt23<FONT COLOR="darkgray">?go-get=1</FONT>>];
"git clone" [label=<git clone <FONT COLOR="darkgray">into module cache</FONT><BR/><FONT COLOR="mediumpurple" POINT-SIZE="8">e.g. ~/go/pkg/mod/</FONT>>];
"module proxy" [label=<module proxy<BR/><FONT POINT-SIZE="8" COLOR="mediumpurple">proxy.golang.org</FONT>>];
"repourl" [label=<<FONT COLOR="darkgray">... git</FONT> <B>https://github.com/golang-leipzig/clt23.git</B><BR/><FONT COLOR="mediumpurple" POINT-SIZE="8"><meta name="go-import" content="..."></FONT>>];
"go tool calls vcs" [label=<go tool calls <B>vcs</B>>];
"clt23" [style="filled" fillcolor="lightyellow"];
"go install golangleipzig.space/clt23@latest" -> "golangleipzig.space/clt23";
"go install golangleipzig.space/clt23@latest" -> "module proxy" [style="dashed"];
"module proxy" -> "golangleipzig.space/clt23" [style="dashed"];
"golangleipzig.space/clt23" -> "meta";
"meta" -> "repo";
"repo" -> "repourl";
"repourl" -> "git clone";
"go build ..." -> "go install ...";
{
rank="same";
"go tool calls vcs" -> "git clone";
"git clone" -> "go build ...";
}
"go install ..." -> "clt23";
}