Skip to content

Commit

Permalink
Merge pull request #2 from NekoNyaDevs/dev
Browse files Browse the repository at this point in the history
Fixed config example
  • Loading branch information
TheDogHusky committed Mar 8, 2024
2 parents ad6502f + c8514da commit acc7733
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions src/config.example.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { Colors } from './struct/typings';

export const debug = true;
export const emotes = {
success: ':white_check_mark:',
Expand All @@ -23,9 +25,26 @@ export const emotes = {
cuddle: ':smiling_face_with_3_hearts:',
poke: ':point_right:',
feed: ':fork_and_knife:',
lewd: ':smirk:'
lewd: ':smirk:',
id: ':id:',
pen: ':pen_ballpoint:',
reload: ':arrows_counterclockwise:',
restart: ':arrows_counterclockwise:',
infos: ':information_source:',
help: ':question:',
ping: ':ping_pong:',
eval: ':desktop:',
guilds: ':shield:',
silhouettes: ':busts_in_silhouette:',
uptime: ':stopwatch:',
version: ':label:',
status: ':satellite:',
channels: ':speech_balloon:',
commands: ':keyboard:',
time: ':alarm_clock:',
api: ':satellite:',
}
export const colors = {
export const colors: Colors = {
success: '#4fd92a',
error: '#f44336',
bug: '#FF0000',
Expand All @@ -37,6 +56,6 @@ export const colors = {
secondary: '#adadad'
};
export const owners = [
'Your ID'
'Your ID here'
];
export const queueInterval = 1000;

0 comments on commit acc7733

Please sign in to comment.