Added a logo and env example

This commit is contained in:
2022-01-23 16:20:06 +03:00
parent 28a36cd3a7
commit 06139e03e6
3 changed files with 12 additions and 0 deletions

1
.env.example Normal file
View File

@@ -0,0 +1 @@
SERVICE_KEY=

View File

@@ -3,7 +3,9 @@ dotenv.config();
import Rareterm from 'rareterm.node';
import getImages from './getImages.js';
import logo from './logo.js';
logo();
const entity = process.argv[2];
(async () => {

9
logo.js Normal file
View File

@@ -0,0 +1,9 @@
export default () => console.log(
` __ __ ___ _ __ _ _______ _______ _______ _______ _______ ______
| | | | | | | | | | | | | | | | | |
| |_| | |_| |____| |_| | ___|_ _|___| ___| ___| ___| _ |
| | _|____| | |___ | ||____| |___| |___| |___| | | |
| | |_ | _ | ___| | | | ___| ___| ___| |_| |
| || _ | | | | | | | | | | | |___| |___| |
|___| |___| |_| |_| |__|___| |___| |___| |_______|_______|______| `
);