UNPKG

kinde-cli

Version:

Kinde cli for managing your business integration, users, roles and permissions etc

20 lines (19 loc) 437 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** Temporary in-memory storage for config object */ class Context { constructor() { if (!Context.instance) { Context.instance = this; } return Context.instance; } setData(args) { this.data = args; } getData() { return this.data; } } const ctx = new Context(); exports.default = ctx;