UNPKG

@aot-tech/clockify-mcp-server

Version:

MCP Server for Clockify time tracking integration with AI tools

13 lines (12 loc) 401 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.workspacesService = void 0; const api_1 = require("../config/api"); function WorkspacesService(api) { async function fetchAll() { const newApi = (0, api_1.getApi)(); return await newApi.get(`workspaces`); } return { fetchAll }; } exports.workspacesService = WorkspacesService(api_1.api);