mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-17 19:26:23 +00:00
7 lines
166 B
JavaScript
7 lines
166 B
JavaScript
const express = require('express');
|
|
const router = express.Router()
|
|
const { getQr } = require('../controllers/web')
|
|
|
|
router.use('/qr', getQr)
|
|
|
|
module.exports = router |