EasyRecon/Hunt3r

View on GitHub
frontend/src/app/shared/lazyLoad/lazyLoadModule.ts

Summary

Maintainability
A
0 mins
Test Coverage

import {NgModule} from '@angular/core';
import {LazyLoadDirective} from './lazyLoadDirective';

@NgModule({
    declarations: [LazyLoadDirective],
    exports:[LazyLoadDirective]
   })
   export class LazyLoadModule{}