Remove jsonwebtoken dependency

This commit is contained in:
advplyr 2022-07-06 18:45:43 -05:00
parent b61ecefce4
commit 954cf3e14e
29 changed files with 2130 additions and 93 deletions

View file

@ -1,5 +1,5 @@
const bcrypt = require('bcryptjs')
const jwt = require('jsonwebtoken')
const jwt = require('./libs/jsonwebtoken')
const Logger = require('./Logger')
class Auth {