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