change architecture
This commit is contained in:
16
src/server/modules/auth/auth.module.ts
Normal file
16
src/server/modules/auth/auth.module.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { AuthController } from './auth.controller';
|
||||
import { AuthService } from './auth.service';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
// hono-di:imports
|
||||
],
|
||||
controllers: [
|
||||
AuthController, // hono-di:controllers
|
||||
],
|
||||
providers: [
|
||||
AuthService, // hono-di:providers
|
||||
],
|
||||
})
|
||||
export class AuthModule {}
|
||||
Reference in New Issue
Block a user