797b20979d
承运商 HTML 按收货市下发;textarea 回车在 C 端转成换行。含门店去掉分享按钮与小程序企微客服。 Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
675 B
TypeScript
15 lines
675 B
TypeScript
import { Module, forwardRef } from '@nestjs/common';
|
|
import { IntegrationsModule } from '../../integrations/integrations.module';
|
|
import { TradeModule } from '../trade/trade.module';
|
|
import { FulfillmentProviderService } from './fulfillment-provider.service';
|
|
import { FulfillmentService } from './fulfillment.service';
|
|
import { LocalDeliveriesController } from './local-deliveries.controller';
|
|
|
|
@Module({
|
|
imports: [IntegrationsModule, forwardRef(() => TradeModule)],
|
|
controllers: [LocalDeliveriesController],
|
|
providers: [FulfillmentProviderService, FulfillmentService],
|
|
exports: [FulfillmentProviderService, FulfillmentService],
|
|
})
|
|
export class FulfillmentModule {}
|