summaryrefslogtreecommitdiff
path: root/frontend/src/schemas/games.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/schemas/games.js')
-rw-r--r--frontend/src/schemas/games.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/frontend/src/schemas/games.js b/frontend/src/schemas/games.js
deleted file mode 100644
index bcae0235..00000000
--- a/frontend/src/schemas/games.js
+++ /dev/null
@@ -1,9 +0,0 @@
-import { schema } from 'normalizr';
-
-const player = new schema.Entity('players', {}, { idAttribute: 'username' });
-
-export const game = new schema.Entity('games', {
- players: [player],
-});
-
-export const gameList = [game];
bgstack15