Commit 34812e9c authored by Diego Iván's avatar Diego Iván
Browse files

agregando constantes de jwt

parent c9015d66
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
import * as dotenv from 'dotenv';
dotenv.config();

export class JwtConstants {
  static SECRET = process.env.JWT_SECRET || 'secretKey';
}