@citrineos/base
Version:
The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.
10 lines • 319 B
JavaScript
// SPDX-FileCopyrightText: 2025 Contributors to the CitrineOS Project
//
// SPDX-License-Identifier: Apache-2.0
export class TenantContextManager {
static schemaPrefix = 'tenant_';
static getSchemaForTenant(tenantId) {
return `${this.schemaPrefix}${tenantId}`;
}
}
//# sourceMappingURL=tenant.js.map