forked from irods/irods_demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.dot
More file actions
28 lines (24 loc) · 726 Bytes
/
Copy pathdependencies.dot
File metadata and controls
28 lines (24 loc) · 726 Bytes
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
digraph G {
rankdir="BT"
catalog [label = "irods-catalog"];
provider [label = "irods-catalog-provider"];
consumer [label = "irods-catalog-consumer"];
http [label = "irods-client-http-api"];
icommands [label = "irods-client-icommands"];
nfsrods [label = "irods-client-nfsrods"];
nginx [label = "nginx-reverse-proxy"];
s3 [label = "irods-client-s3-api"];
zmt [label = "irods-client-zmt"];
metalnx [label = "metalnx"];
minio [label = "minio"];
provider -> catalog;
consumer -> provider;
icommands -> provider;
nginx -> http;
zmt -> nginx;
metalnx -> provider;
http -> provider;
s3 -> provider;
nfsrods -> provider;
provider -> minio;
}