moex-vibe/apps/backend/src/modules/shares/shares.module.ts

11 lines
283 B
TypeScript

import { Module } from '@nestjs/common';
import { SharesController } from './shares.controller';
import { SharesService } from './shares.service';
@Module({
controllers: [SharesController],
providers: [SharesService],
exports: [SharesService],
})
export class SharesModule {}