zixineabra
Version:
A Telegram utility bot for managing sessions, logging in accounts, and retrieving WebView data.
15 lines (12 loc) • 946 B
JavaScript
// banner/banner.js
const colors = require("colors");
function printBanner() {
console.log(colors.blue('██ ██ ██ ███ ██ ███████ ███ ██ ██ ██████ '));
console.log(colors.blue('██ ██ ██ ████ ██ ██ ████ ██ ██ ██ ██ '));
console.log(colors.blue('██ █ ██ ██ ██ ██ ██ ███████ ██ ██ ██ ██ ██████ '));
console.log(colors.blue('██ ███ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ '));
console.log(colors.blue(' ███ ███ ██ ██ ████ ███████ ██ ████ ██ ██ '));
console.log();
console.log("Join our Telegram channel: https://t.me/winsnip");
}
module.exports = { printBanner };