@n8n/n8n-benchmark
Version:
Cli for running benchmark tests for n8n
14 lines • 451 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ProjectApiClient = void 0;
class ProjectApiClient {
constructor(apiClient) {
this.apiClient = apiClient;
}
async getPersonalProject() {
const response = await this.apiClient.get('/projects/personal');
return response.data.data.id;
}
}
exports.ProjectApiClient = ProjectApiClient;
//# sourceMappingURL=project-api-client.js.map