- Changed package bcrypt to bcryptjs

- Log memory usage every 10 minutes
This commit is contained in:
Junior 2023-10-07 00:52:03 -03:00
parent fc797c740b
commit e4f8b3dc90
6 changed files with 26 additions and 5 deletions

View file

@ -1,5 +1,5 @@
const sql = require('mssql');
const bcrypt = require('bcrypt');
const bcrypt = require('bcryptjs');
const crypto = require('crypto');
const express = require('express');
const router = express.Router();