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