NUEVA BUSQUEDA DE DATOS SRI

This commit is contained in:
2023-04-11 10:50:28 -05:00
parent d9d7eb83cb
commit 6b4b3e263c
612 changed files with 11604 additions and 36692 deletions

12
src/db.js Normal file
View File

@@ -0,0 +1,12 @@
const db = {};
//import { createPool } from "mysql2";
const createPool = require('mysql2');
db.pool = createPool({
host: 'localhost',
user: 'admin',
password: 'Dx.1706%',
port: 3306,
database: 'zuba'
});
module.exports = db;