mirror of
https://github.com/FranP-code/Baileys.git
synced 2025-10-13 00:32:22 +00:00
7 lines
150 B
JavaScript
7 lines
150 B
JavaScript
var qrcode = require('../lib/main'),
|
|
url = 'https://google.com/';
|
|
|
|
qrcode.generate(url, { small: true }, function (qr) {
|
|
console.log(qr);
|
|
});
|