summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/maas/maas.module.ts
blob: 726ecf1150593c5249ec88b57c3a1466a3aa2e88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { NgModule } from '@angular/core';
import { MaasRoutingModule } from './maas-routing.module';
import { ApplicationManagementComponent } from './build/application-management.component';
import { CreateApplicationManagementComponent } from './build/create-application-management/create-application-management.component';
import { UseApplicationComponent } from './use/use-application.component';
import { ApplicationDetailComponent } from './build/application-detail/application-detail.component';
import { DescriptionComponent } from '@src/app/shared/components/description/description.component';
import { DescriptionItemComponent } from '@src/app/shared/components/description/descriptions-item.component';
import { KnowledgeBaseManagementComponent } from './knowledge-base-management/knowledge-base-management.component';
import { CreateKnowledgeBaseComponent } from './knowledge-base-management/create-knowledge-base/create-knowledge-base.component';
import { KnowledgeBaseDetailComponent } from './knowledge-base-management/knowledge-base-detail/knowledge-base-detail.component';
import { SharedModule } from '@src/app/shared/module/sharded.module';
import { MaasApi } from '@src/app/api/maas.api';
import { EditKnowledgeBaseComponent } from './knowledge-base-management/edit-knowledge-base/edit-knowledge-base.component';
import { MaasService } from './maas-service.service';
import { KnowledgeBaseService } from './knowledge-base-management/knowledge-base.service';
import { MarkdownModule } from 'ngx-markdown';
import { ClipboardModule } from 'ngx-clipboard';
import { CodeBlockDirective } from './use/code-block.directive';
@NgModule({
  providers: [
    MaasApi,
    MaasService,
    KnowledgeBaseService
  ],
  imports: [
    SharedModule,
    MaasRoutingModule,
    MarkdownModule.forChild(),
    ClipboardModule
  ],
  declarations: [
    ApplicationManagementComponent,
    CreateApplicationManagementComponent,
    UseApplicationComponent,
    ApplicationDetailComponent,
    DescriptionComponent,
    DescriptionItemComponent,
    KnowledgeBaseManagementComponent,
    CreateKnowledgeBaseComponent,
    KnowledgeBaseDetailComponent,
    EditKnowledgeBaseComponent,
    CodeBlockDirective
  ]
})
export class MaasModule { }