chore: Use imports as ES modules
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import Flow from '../models/flow';
|
||||
import globalVariable from '../helpers/global-variable';
|
||||
import EarlyExitError from '../errors/early-exit';
|
||||
import AlreadyProcessedError from '../errors/already-processed';
|
||||
import HttpError from '../errors/http';
|
||||
import { logger } from '../helpers/logger';
|
||||
import Flow from '../models/flow.js';
|
||||
import globalVariable from '../helpers/global-variable.js';
|
||||
import EarlyExitError from '../errors/early-exit.js';
|
||||
import AlreadyProcessedError from '../errors/already-processed.js';
|
||||
import HttpError from '../errors/http.js';
|
||||
import { logger } from '../helpers/logger.js';
|
||||
|
||||
export const processFlow = async (options) => {
|
||||
const { testRun, flowId } = options;
|
||||
|
||||
Reference in New Issue
Block a user