(botId: string, token: string)
| 4 | const memoizedGetSlackBot = promiseMemoize(getSlackBot); |
| 5 | |
| 6 | export async function getBotUserId(botId: string, token: string) { |
| 7 | const bot = await memoizedGetSlackBot(botId, token); |
| 8 | return bot.user_id; |
| 9 | } |
no outgoing calls
no test coverage detected