UNPKG

wickr-bedrock-bot

Version:

AWS Wickr's own Bedrock Bot

13 lines (12 loc) 526 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getSSOTokenFromFile = void 0; const fs_1 = require("fs"); const getSSOTokenFilepath_1 = require("./getSSOTokenFilepath"); const { readFile } = fs_1.promises; const getSSOTokenFromFile = async (id) => { const ssoTokenFilepath = (0, getSSOTokenFilepath_1.getSSOTokenFilepath)(id); const ssoTokenText = await readFile(ssoTokenFilepath, "utf8"); return JSON.parse(ssoTokenText); }; exports.getSSOTokenFromFile = getSSOTokenFromFile;