aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-05-31 19:11:57 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-06-03 17:47:44 -0700
commit0f5555b92915b175a685a24ade9276d170ae37f5 (patch)
tree78ae08b1aaa0263d012ca4037028a21728179bd6 /src/interfaces
parent926bebb122ba4226b65088bd0d2f964c8d9e9f8c (diff)
downloadchessh-bot-0f5555b92915b175a685a24ade9276d170ae37f5.tar.gz
chessh-bot-0f5555b92915b175a685a24ade9276d170ae37f5.zip
move to docker compose, fuck vercel
remove other unnecesaary stuff
Diffstat (limited to 'src/interfaces')
-rw-r--r--src/interfaces/Chessh.ts19
-rw-r--r--src/interfaces/ErrorResponse.ts6
2 files changed, 0 insertions, 25 deletions
diff --git a/src/interfaces/Chessh.ts b/src/interfaces/Chessh.ts
deleted file mode 100644
index 898fccb..0000000
--- a/src/interfaces/Chessh.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;
- last_move: string;
- status: string;
-}
-
-export interface BotMoveAttempt {
- token: string;
- attempted_move: string;
-}
-
-export interface BotMoveResponse {
- message: string;
-}
diff --git a/src/interfaces/ErrorResponse.ts b/src/interfaces/ErrorResponse.ts
deleted file mode 100644
index 1513e10..0000000
--- a/src/interfaces/ErrorResponse.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-import MessageResponse from './MessageResponse';
-
-export default interface ErrorResponse extends MessageResponse {
- stack?: string;
- message: string;
-}