-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserver_tree.html
139 lines (120 loc) · 3.44 KB
/
server_tree.html
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="Author" content="Made by 'tree'">
<meta name="GENERATOR"
content="$Version: $ tree v2.0.4 (c) 1996 - 2022 by Steve Baker, Thomas Moore, Francesc Rocher, Florian Sesser, Kyosuke Tokoro $">
<title>Server Tree</title>
<style type="text/css">
BODY {
font-family: monospace, sans-serif;
color: black;
}
P {
font-family: monospace, sans-serif;
color: black;
margin: 0px;
padding: 0px;
}
A:visited {
text-decoration: none;
margin: 0px;
padding: 0px;
}
A:link {
text-decoration: none;
margin: 0px;
padding: 0px;
}
A:hover {
text-decoration: underline;
background-color: yellow;
margin: 0px;
padding: 0px;
}
A:active {
margin: 0px;
padding: 0px;
}
.VERSION {
font-size: small;
font-family: arial, sans-serif;
}
.NORM {
color: black;
}
.FIFO {
color: purple;
}
.CHAR {
color: yellow;
}
.DIR {
color: blue;
}
.BLOCK {
color: yellow;
}
.LINK {
color: aqua;
}
.SOCK {
color: fuchsia;
}
.EXEC {
color: green;
}
</style>
</head>
<body>
<h1>Server Tree</h1>
<p>
<a class="DIR">server</a><br>
├── <a class="NORM">package-lock.json</a><br>
├── <a class="NORM">index.js</a><br>
├── <a class="NORM">package.json</a><br>
├── <a class="DIR">controllers</a><br>
│ ├── <a class="NORM">course-controller.js</a><br>
│ ├── <a class="NORM">user-controller.js</a><br>
│ ├── <a class="NORM">transaction-controller.js</a><br>
│ ├── <a class="NORM">cart-controller.js</a><br>
│ ├── <a class="NORM">challenge-controller.js</a><br>
│ ├── <a class="NORM">point-controller.js</a><br>
│ ├── <a class="NORM">auth-controller.js</a><br>
│ └── <a class="NORM">payment-controller.js</a><br>
├── <a class="DIR">routes</a><br>
│ ├── <a class="NORM">course-route.js</a><br>
│ ├── <a class="NORM">user-route.js</a><br>
│ ├── <a class="NORM">challenge-route.js</a><br>
│ ├── <a class="NORM">cart-route.js</a><br>
│ ├── <a class="NORM">point-route.js</a><br>
│ ├── <a class="NORM">transaction-route.js</a><br>
│ ├── <a class="NORM">payment-route.js</a><br>
│ └── <a class="NORM">auth-route.js</a><br>
├── <a class="DIR">config</a><br>
│ ├── <a class="NORM">validation.js</a><br>
│ ├── <a class="NORM">upload.js</a><br>
│ └── <a class="NORM">database.js</a><br>
├── <a class="DIR">mock</a><br>
│ ├── <a class="NORM">courses.json</a><br>
│ └── <a class="NORM">users.json</a><br>
├── <a class="DIR">models</a><br>
│ ├── <a class="NORM">user-model.js</a><br>
│ └── <a class="NORM">course-model.js</a><br>
├── <a class="DIR">middlerware</a><br>
│ └── <a class="NORM">auth-middleware.js</a><br>
└── <a class="NORM">app.yaml</a><br>
<br><br>
<p>
6 directories, 28 files
</p>
<hr>
<p class="VERSION">
tree v2.0.4 © 1996 - 2022 by Steve Baker and Thomas Moore <br>
HTML output hacked and copyleft © 1998 by Francesc Rocher <br>
JSON output hacked and copyleft © 2014 by Florian Sesser <br>
Charsets / OS/2 support © 2001 by Kyosuke Tokoro
</p>
</body>
</html>