feat: Finished rewriting the bot, finally

This commit is contained in:
Ale 2023-09-02 23:21:55 +02:00
parent 28ea67ea41
commit 86e8d2582e
No known key found for this signature in database
GPG key ID: 284AFB134BB2E07D
15 changed files with 269 additions and 36 deletions

8
src/models/alterModel.ts Normal file
View file

@ -0,0 +1,8 @@
export interface AlterModel {
id?: number;
owner: string;
prefix: string;
name: string;
profile_pic_url: string;
color?: string;
}

View file

@ -0,0 +1,7 @@
export interface AlterModel {
id?: number;
owner: string;
prefix: string;
name: string;
profile_pic_url: string;
}