Browse Source

user repo object

pull/1/head
Tim Glasgow 2 years ago
parent
commit
2bfd3de8ec
  1. 10
      squarenotsquare/realm/repos/UserRepo.js

10
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;
}
}
Loading…
Cancel
Save