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