mirror of
https://github.com/zadam/trilium.git
synced 2025-11-03 11:56:01 +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;
|