Files
notesnook/packages/core/api/index.js

13 lines
196 B
JavaScript
Raw Normal View History

2020-02-03 12:03:07 +05:00
import Notes from "../collections/notes";
class DB {
constructor(context) {
this.context = context;
}
async init() {
this.notes = new Notes(this.context);
}
}
export default DB;