"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const jwt = require("jsonwebtoken"); class AuthController { static async signUsuario(type, usuarioId) { const secret = 'Holabeb'; const token = jwt.sign({ type, usuarioId }, secret, { expiresIn: '1h' }); return token; } } exports.AuthController = AuthController; //# sourceMappingURL=Auth.js.map