-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.ron
51 lines (51 loc) · 1.05 KB
/
example.ron
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
Configuration(
practice: (
lab_categories: [
(
id: "classical",
name: [
(
language: "en-US",
text: "Classical"
),
(
language: "zh-CN",
text: "古典密码学"
)
],
labs: [
(
id: "affine",
resources: [
(
language: "zh-CN",
name: "仿射加密",
resource: "practice/classical/affine/zh.md"
)
],
ws_endpoints: [
(
host: "localhost",
port: 10020
),
(
host: "192.168.16.128",
port: 10020
),
],
tcp_endpoints: [
(
host: "localhost",
port: 10000
),
(
host: "192.168.16.128",
port: 10000
),
]
)
]
)
]
)
)