mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-18 04:37:51 +01:00
13 lines
196 B
JavaScript
13 lines
196 B
JavaScript
|
|
import Notes from "../collections/notes";
|
||
|
|
|
||
|
|
class DB {
|
||
|
|
constructor(context) {
|
||
|
|
this.context = context;
|
||
|
|
}
|
||
|
|
async init() {
|
||
|
|
this.notes = new Notes(this.context);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default DB;
|