Files
psp_api/src/modules/profile/profile.module.ts
T

10 lines
259 B
TypeScript
Raw Normal View History

import { Module } from '@nestjs/common'
import { ProfileController } from './profile.controller'
import { ProfileService } from './profile.service'
@Module({
controllers: [ProfileController],
providers: [ProfileService],
})
export class ProfileModule {}