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