mirror of
https://github.com/imputnet/cobalt.git
synced 2026-09-27 08:55:41 +00:00
added a status check endpoint
This commit is contained in:
parent
68703ae300
commit
a3e4c8dcfd
1 changed files with 3 additions and 0 deletions
|
|
@ -166,6 +166,9 @@ if (fs.existsSync('./.env') && process.env.selfURL && process.env.streamSalt &&
|
|||
app.get("/api", (req, res) => {
|
||||
res.redirect('/api/json')
|
||||
});
|
||||
app.get("/status", (req, res) => {
|
||||
res.status(200).end()
|
||||
});
|
||||
app.get("/", (req, res) => {
|
||||
res.sendFile(`${__dirname}/${findRendered(languageCode(req), req.header('user-agent') ? req.header('user-agent') : genericUserAgent)}`);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue