student-manage/apps/server/src/models/goods/goods.module.ts

10 lines
247 B
TypeScript

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