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

10 lines
247 B
TypeScript
Raw Normal View History

2025-02-22 22:06:44 +08:00
import { Module } from '@nestjs/common';
import { GoodsService } from './goods.service';
import { GoodsController } from './goods.controller';
@Module({
providers: [GoodsService],
controllers: [GoodsController]
})
export class GoodsModule {}