mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-19 04:59:33 +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;
|