Files
noahspan-flying/api/src/msGraph/ms-graph.module.ts
2025-01-31 09:27:31 -06:00

9 lines
304 B
TypeScript

import { Module } from '@nestjs/common';
import { MsGraphService } from './ms-graph.service';
import { ConfigurableModuleClass } from './ms-graph.module-definition';
@Module({
providers: [MsGraphService],
exports: [MsGraphService]
})
export class MsGraphModule extends ConfigurableModuleClass {}