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

9 lines
182 B
TypeScript
Raw Normal View History

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