-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubmodules.json
More file actions
52 lines (52 loc) · 1.17 KB
/
Copy pathsubmodules.json
File metadata and controls
52 lines (52 loc) · 1.17 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"list": {
"go-dbms": {
"rootPath": "",
"goPath": "",
"url": "github.com/vahagz/go-dbms",
"branch": "master"
},
"bptree": {
"rootPath": "pkg/bptree",
"goPath": "pkg/bptree",
"url": "github.com/vahagz/bptree",
"branch": "main"
},
"disk-allocator/heap": {
"rootPath": "pkg/disk-allocator",
"goPath": "pkg/disk-allocator/heap",
"url": "github.com/vahagz/disk-allocator/heap",
"branch": "main"
},
"rbtree": {
"rootPath": "pkg/rbtree",
"goPath": "pkg/rbtree",
"url": "github.com/vahagz/rbtree",
"branch": "main"
},
"pager": {
"rootPath": "pkg/pager",
"goPath": "pkg/pager",
"url": "github.com/vahagz/pager",
"branch": "main"
}
},
"modules": [
{
"module": "rbtree",
"dependencies": [ "pager" ]
},
{
"module": "disk-allocator/heap",
"dependencies": [ "rbtree", "pager" ]
},
{
"module": "bptree",
"dependencies": [ "disk-allocator/heap", "rbtree", "pager" ]
},
{
"module": "go-dbms",
"dependencies": [ "bptree", "disk-allocator/heap", "rbtree", "pager" ]
}
]
}