Files
medusa-store/packages/workflow-engine-redis/src/repositories/workflow-execution.ts
T
2024-01-23 10:08:08 -03:00

8 lines
238 B
TypeScript

import { DALUtils } from "@medusajs/utils"
import { WorkflowExecution } from "@models"
// eslint-disable-next-line max-len
export class WorkflowExecutionRepository extends DALUtils.mikroOrmBaseRepositoryFactory(
WorkflowExecution
) {}