recall_sdk
Version:
Node js sdk for the recall ai api
18 lines (17 loc) • 495 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Auth = void 0;
const meets_1 = require("./meets");
class Auth {
constructor({ apiKey, loginUrl }) {
this.google = meets_1.Google.getInstance({ apiKey, loginUrl });
}
static getInstance({ apiKey, loginUrl }) {
if (!Auth.instance) {
Auth.instance = new Auth({ apiKey, loginUrl });
}
return Auth.instance;
}
}
exports.Auth = Auth;
Auth.instance = null;