Merge branch 'master' of ssh://85.143.175.152:222/bro-students/multy-stub

This commit is contained in:
Primakov Alexandr Alexandrovich 2024-12-01 21:48:03 +03:00
commit 4d5cd104ad
3 changed files with 3 additions and 3 deletions

View File

@ -1,13 +1,13 @@
version: "3"
volumes:
ms_volume:
ms_volume8:
services:
mongoDb:
image: mongo:8.0.3
volumes:
- ms_volume:/data/db
- ms_volume8:/data/db
restart: always
# ports:
# - 27017:27017

View File

@ -1,7 +1,7 @@
const router = require('express').Router();
router.get("/users", (request, response) => {
response.send(require("./json/users.json"))
response.send(require("./json/users/users.json"))
})
router.post("/auth", (request, response) => {