mirror of
https://github.com/zadam/trilium.git
synced 2025-11-10 23:35:50 +01:00
14 lines
191 B
JavaScript
14 lines
191 B
JavaScript
let shaca;
|
|
|
|
class AbstractEntity {
|
|
get shaca() {
|
|
if (!shaca) {
|
|
shaca = require("../shaca");
|
|
}
|
|
|
|
return shaca;
|
|
}
|
|
}
|
|
|
|
module.exports = AbstractEntity;
|