@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
15 lines • 598 B
JavaScript
;
// Copyright Contributors to the CitrineOS Project
//
// SPDX-License-Identifier: Apache 2.0
Object.defineProperty(exports, "__esModule", { value: true });
exports.SequelizeTenantRepository = void 0;
const Base_1 = require("./Base");
const Tenant_1 = require("../model/Tenant");
class SequelizeTenantRepository extends Base_1.SequelizeRepository {
constructor(config, logger, sequelizeInstance) {
super(config, Tenant_1.Tenant.MODEL_NAME, logger, sequelizeInstance);
}
}
exports.SequelizeTenantRepository = SequelizeTenantRepository;
//# sourceMappingURL=Tenant.js.map