Skip to content
Snippets Groups Projects
structures.module.ts 283 B
Newer Older
  • Learn to ignore specific revisions
  • Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    import { Module } from '@nestjs/common';
    import { StructuresController } from './structures.controller';
    import { StructuresService } from './structures.service';
    
    @Module({
      controllers: [StructuresController],
      providers: [StructuresService],
    })
    export class StructuresModule {}