-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode_roles.json
50 lines (50 loc) · 1.21 KB
/
node_roles.json
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
{
"Role" : [
{
"Name" : "Role A",
"Address" : [
{
"IP" : "127.0.0.1",
"Port" : "8080"
},
{
"IP" : "127.0.0.1",
"Port" : "4999"
}
],
"SourceCode" : [
{
"Path" : "hello/2.go",
"StartLine" : 0,
"EndLine" : 49
},
{
"Path" : "hello/2.go",
"StartLine" : 124,
"EndLine" : 350
}
]
},
{
"Name" : "Role B",
"Address" : [
{
"IP" : "127.0.0.1",
"Port" : "8081"
}
],
"SourceCode" : [
{
"Path" : "hello/1.go",
"StartLine" : 0,
"EndLine" : 350
},
{
"Path" : "hello/2.go",
"StartLine" : 50,
"EndLine" : 123
}
]
}
]
}