Merge branch 'main' of https://forgejo.systemsobscure.net/thomasabishop/eolas-api
All checks were successful
Deploy eolas-api / deploy (push) Successful in 33s

This commit is contained in:
Thomas Bishop 2025-10-17 19:14:06 +01:00
commit 230bf67f6c
2 changed files with 7 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "eolas-api", "name": "eolas-api",
"version": "0.2.2", "version": "0.3.0",
"description": "API for querying eolas-db, my Zettelkasten database", "description": "API for querying eolas-db, my Zettelkasten database",
"license": "ISC", "license": "ISC",
"author": "Thomas Bishop", "author": "Thomas Bishop",

View file

@ -21,3 +21,7 @@ app.listen(port, () => {
app.get("/health", (req, res) => { app.get("/health", (req, res) => {
res.status(200).json({ status: ok }) res.status(200).json({ status: ok })
}) })
app.get("/health", (req, res) => {
res.status(200).json({ status: ok })
})