clean foldering

This commit is contained in:
2025-11-24 20:28:49 +03:30
parent cfc7e1ffb9
commit 26b5d2b561
13 changed files with 76 additions and 118 deletions
@@ -1,10 +0,0 @@
import { EntityManager, EntityRepository } from '@mikro-orm/postgresql';
import { Injectable } from '@nestjs/common';
import { RestaurantShipmentMethod } from '../entities/restaurant-shipment-method.entity';
@Injectable()
export class RestaurantShipmentMethodRepository extends EntityRepository<RestaurantShipmentMethod> {
constructor(readonly em: EntityManager) {
super(em, RestaurantShipmentMethod);
}
}