import { Module } from '@nestjs/common'; import { GoodsController } from './goods.controller'; import { GoodsService } from './goods.service'; import { SyncModule } from '../sync/sync.module'; @Module({ imports: [SyncModule], controllers: [GoodsController], providers: [GoodsService], exports: [GoodsService], }) export class GoodsModule {}