import { WebClient } from "https://deno.land/x/slack_web_api@1.0.3/mod.ts";
type Slack = {
token: string;
};
export async function main(
slack: Slack,
) {
const web = new WebClient(slack.token);
const email = Deno.env.get('WM_EMAIL');
return await web.users.lookupByEmail({
email
})
}
Submitted by pranav bansal428 9 days ago