This commit is contained in:
romantarkin 2026-05-30 23:00:27 +05:00
parent f24543d50c
commit cee47510a4

View File

@ -138,12 +138,19 @@ app.get("/", (req, res) => {
});
});
app.get("/health", (req, res) => {
app.get(["/health", "/fns-receipt-service/health"], (req, res) => {
res.json({
status: "ok"
});
});
app.get("/fns-receipt-service", (req, res) => {
res.json({
service: "fns-receipt-service",
status: "ok"
});
});
app.get("/health/deep", async (req, res) => {
const result = {
status: "ok",