Files
bbq/src/app/routes/download/download.module.ts
Taric Xin fe3d6b6f92 edit
2022-01-13 17:13:24 +08:00

13 lines
433 B
TypeScript

import { NgModule, Type } from '@angular/core';
import { SharedModule } from '@shared';
import { DownloadComponentsListComponent } from './components/list/list.component';
import { DownloadRoutingModule } from './download-routing.module';
const COMPONENTS: Type<void>[] = [DownloadComponentsListComponent];
@NgModule({
imports: [SharedModule, DownloadRoutingModule],
declarations: COMPONENTS,
})
export class DownloadModule {}