From e3382e03b522784c43be3f096fe3cb8343ef8e51 Mon Sep 17 00:00:00 2001 From: Tim Glasgow Date: Sun, 24 Jul 2022 14:56:12 -0500 Subject: [PATCH] score repo object --- squarenotsquare/realm/repos/ScoreRepo.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/squarenotsquare/realm/repos/ScoreRepo.js b/squarenotsquare/realm/repos/ScoreRepo.js index e69de29..0bc770b 100644 --- a/squarenotsquare/realm/repos/ScoreRepo.js +++ b/squarenotsquare/realm/repos/ScoreRepo.js @@ -0,0 +1,10 @@ +import {Score} from '../entities/Score'; +import uuid from 'uuid'; + +export default class ScoreRepo { + realmDB = null; + + constructor(db) { + this.realmDB = db; + } +} \ No newline at end of file