1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-22 07:16:38 +02:00
keeweb/app/scripts/collections/entry-collection.js
2019-11-03 11:24:33 +01:00

9 lines
206 B
JavaScript

import { Collection } from 'framework/collection';
import { EntryModel } from 'models/entry-model';
class EntryCollection extends Collection {
static model = EntryModel;
}
export { EntryCollection };