forked from Yara724/api
Initial commit after migration to gitea
This commit is contained in:
12
src/profile/profile.module.ts
Normal file
12
src/profile/profile.module.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { Module } from "@nestjs/common";
|
||||
import { PlatesModule } from "src/plates/plates.module";
|
||||
import { UsersModule } from "src/users/users.module";
|
||||
import { ProfileController } from "./profile.controller";
|
||||
import { ProfileService } from "./profile.service";
|
||||
|
||||
@Module({
|
||||
imports: [UsersModule, PlatesModule],
|
||||
controllers: [ProfileController],
|
||||
providers: [ProfileService],
|
||||
})
|
||||
export class ProfileModule {}
|
||||
Reference in New Issue
Block a user