import { getProfileTool } from "./get-profile.js";
import { updateProfileTool } from "./update-profile.js";

export const profileTools = [
  getProfileTool.definition,
  updateProfileTool.definition
];

export const profileToolHandlers = {
  "upwork_get_profile": getProfileTool.handler,
  "upwork_update_profile": updateProfileTool.handler
};