aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-05-29 17:46:20 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-05-29 17:46:20 -0700
commitf646428790b0f8e26de2bd01a1bb67e45fb7cdd4 (patch)
treea7626e2633924b308c2966690cad18b3d1889ed3 /src
parent548498d37424f2ac579770962b627aeba61925e8 (diff)
downloadchessh-bot-f646428790b0f8e26de2bd01a1bb67e45fb7cdd4.tar.gz
chessh-bot-f646428790b0f8e26de2bd01a1bb67e45fb7cdd4.zip
remove unnecessary shit
Diffstat (limited to 'src')
-rw-r--r--src/interfaces/ChesshRequest.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/interfaces/ChesshRequest.ts b/src/interfaces/ChesshRequest.ts
deleted file mode 100644
index 72340ba..0000000
--- a/src/interfaces/ChesshRequest.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-export interface BotMoveRequest {
- bot_id: number;
- bot_name: string;
- game_id: number;
- fen: string;
- turn: string;
- bot_turn: boolean;
- status: string;
-}
-
-export interface BotMoveAttempt {
- token: string;
- attempted_move: string;
-}
-
-export interface BotMoveResponse {
- success: boolean;
- message: string;
-}