@ostyado/baileys 1.1.3 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +12 -3
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
const chalk = require("chalk");
|
|
4
|
+
console.log(
|
|
5
|
+
chalk.cyan.bold(`
|
|
6
|
+
░█▀█░█▀▀░▀█▀░█░█░█▀█░█▀▄░█▀█
|
|
7
|
+
░█░█░▀▀█░░█░░░█░░█▀█░█░█░█░█
|
|
8
|
+
░▀▀▀░▀▀▀░░▀░░░▀░░▀░▀░▀▀░░▀▀▀
|
|
4
9
|
|
|
5
|
-
|
|
6
|
-
|
|
10
|
+
░█▀▄░█▀█░▀█▀░█░░░█▀▀
|
|
11
|
+
░█▀▄░█▀█░░█░░█░░░▀▀█
|
|
12
|
+
░▀▀░░▀░▀░▀▀▀░▀▀▀░▀▀▀
|
|
13
|
+
`)
|
|
14
|
+
);
|
|
15
|
+
console.log(chalk.yellow("Telegram: ") + chalk.magenta("@ostyado"));
|
|
7
16
|
console.log(chalk.gray("------------------------------\n"));
|
|
8
|
-
const latestUpdate = new Date("
|
|
17
|
+
const latestUpdate = new Date("2026-01-05");
|
|
9
18
|
console.log(chalk.yellowBright("🦾 Last updated: ") + chalk.whiteBright(latestUpdate.toLocaleDateString()));
|
|
10
19
|
console.log(chalk.gray("------------------------------\n"));
|
|
11
20
|
|