staff_data/apps/server/src/init/init.module.ts

11 lines
262 B
TypeScript
Raw Normal View History

2024-09-03 20:19:33 +08:00
import { Module } from '@nestjs/common';
import { InitService } from './init.service';
2024-09-10 10:31:24 +08:00
import { AuthModule } from '@server/auth/auth.module';
2024-09-03 20:19:33 +08:00
@Module({
2024-09-10 10:31:24 +08:00
imports: [AuthModule],
2024-09-03 20:19:33 +08:00
providers: [InitService],
exports: [InitService]
})
export class InitModule { }