-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.ts
11 lines (10 loc) · 888 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
import App from '@/App';
import { textSync } from 'figlet';
import { magentaBright, yellow, cyanBright, red, blueBright, grey } from 'chalk';
console.log(magentaBright(textSync('Fyre API', { horizontalLayout: 'fitted' })));
console.log(`${yellow.bold('#======================')} ${magentaBright.bold('Fyre API')} ${yellow.bold('========================#')}`);
console.log(`${yellow.bold('#')} ${blueBright.bold('Created by: Liam L <TheFallenSpirit>')} ${yellow.bold('#')}`);
console.log(`${yellow.bold('#')} ${red.bold(`Copyright © ${new Date().getFullYear()}`)} ${cyanBright.bold('FyreNodes LTD')} ${yellow.bold('#')}`);
console.log(`${yellow.bold('#')} ${grey.bold('Starting Fyre API...')} ${yellow.bold('#')}`);
console.log(yellow.bold('#========================================================#'));
App();