import * as wmill from "https://deno.land/x/[email protected]/index.ts";
import { WebClient } from "https://deno.land/x/[email protected]/mod.ts";

export async function main(
  slack_auth: wmill.Resource<"slack">,
  email: string, // An email address belonging to a user in the workspace
) {
  const web = new WebClient(slack_auth);

  let response = await web.users.lookupByEmail({ 
    email: email,
  });

  return { "response": response };
}