Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
·
1fc1c4d
1
Parent(s):
be866be
in black so we can read it
Browse files- src/index.mts +9 -1
src/index.mts
CHANGED
@@ -25,7 +25,15 @@ app.use(express.urlencoded({ limit: '200mb', extended: true }));
|
|
25 |
|
26 |
app.get("/", async (req, res) => {
|
27 |
res.status(200)
|
28 |
-
res.write(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
res.end()
|
30 |
})
|
31 |
|
|
|
25 |
|
26 |
app.get("/", async (req, res) => {
|
27 |
res.status(200)
|
28 |
+
res.write(`<html>
|
29 |
+
<head></head>
|
30 |
+
<body>
|
31 |
+
<p style="color: black; font-family: monospace;">
|
32 |
+
This API is a component of the Clap-to-MP4 rendering service provided by AiTube.<br/>
|
33 |
+
It is used for instance by the Stories Factory.
|
34 |
+
</p>
|
35 |
+
</body>
|
36 |
+
<html>`)
|
37 |
res.end()
|
38 |
})
|
39 |
|