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