2021-10-17 14:44:59 +02:00
|
|
|
let shaca;
|
|
|
|
|
|
2023-01-03 13:40:21 +01:00
|
|
|
class AbstractShacaEntity {
|
2021-10-17 14:44:59 +02:00
|
|
|
get shaca() {
|
|
|
|
|
if (!shaca) {
|
|
|
|
|
shaca = require("../shaca");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return shaca;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-03 13:40:21 +01:00
|
|
|
module.exports = AbstractShacaEntity;
|