refactor(core): Enforce filename casing in cli package (no-changelog) (#10594)

This commit is contained in:
Iván Ovejero
2024-08-28 17:57:46 +02:00
committed by GitHub
parent dbc10fe9f5
commit 6485ca0a4b
239 changed files with 313 additions and 307 deletions

View File

@@ -2,10 +2,10 @@ import express from 'express';
import { v4 as uuid } from 'uuid';
import axios from 'axios';
import * as Db from '@/Db';
import * as Db from '@/db';
import * as ResponseHelper from '@/response-helper';
import * as WorkflowHelpers from '@/workflow-helpers';
import type { IWorkflowResponse } from '@/Interfaces';
import type { IWorkflowResponse } from '@/interfaces';
import config from '@/config';
import { Delete, Get, Patch, Post, ProjectScope, Put, RestController } from '@/decorators';
import { SharedWorkflow } from '@/databases/entities/shared-workflow';