From c7ae68aa46a8fac8e255863502c05f8355bada61 Mon Sep 17 00:00:00 2001 From: Abdul Rahman Reza Date: Sat, 30 Nov 2024 16:00:55 +0700 Subject: [PATCH] update orm import --- src/helpers/orm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/orm.ts b/src/helpers/orm.ts index e0188ab..b36e26c 100644 --- a/src/helpers/orm.ts +++ b/src/helpers/orm.ts @@ -1,7 +1,7 @@ import config from 'config'; import { DataSource } from "typeorm"; import { ILogObj, Logger } from 'tslog'; -import { Branch, Product } from 'Entity' +import { Branch, Product } from 'entity' export class OrmHelper { static DB: DataSource = null