added svcapi ui and camunda code
[it/otf.git] / otf-frontend / client / src / app / layout / onboarding / test-head / test-head.module.ts
1 /*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
2 #                                                                              #\r
3 #   Licensed under the Apache License, Version 2.0 (the "License");            #\r
4 #   you may not use this file except in compliance with the License.           #\r
5 #   You may obtain a copy of the License at                                    #\r
6 #                                                                              #\r
7 #       http://www.apache.org/licenses/LICENSE-2.0                             #\r
8 #                                                                              #\r
9 #   Unless required by applicable law or agreed to in writing, software        #\r
10 #   distributed under the License is distributed on an "AS IS" BASIS,          #\r
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
12 #   See the License for the specific language governing permissions and        #\r
13 #   limitations under the License.                                             #\r
14 ##############################################################################*/\r
15 \r
16 \r
17 import { NgModule, Pipe } from '@angular/core';\r
18 import { CommonModule } from '@angular/common';\r
19 \r
20 import { TestHeadRoutingModule } from './test-head-routing.module';\r
21 import { TestHeadComponent } from './test-head.component';\r
22 import { PageHeaderModule, SharedPipesModule } from '../../../shared';\r
23 import { FormsModule } from '@angular/forms';\r
24 import { FilterPipeModule } from 'ngx-filter-pipe';\r
25 import { ListService } from '../../../shared/services/list.service';\r
26 import { CreateTestHeadFormModule } from '../../../shared/modules/create-test-head-form/create-test-head-form.module';\r
27 import { CreateTestHeadFormComponent } from '../../../shared/modules/create-test-head-form/create-test-head-form.component';\r
28 import { TestHeadModalModule } from '../../../shared/modules/test-head-modal/test-head-modal.module';\r
29 import { MatButtonModule, MatCardModule } from '@angular/material';\r
30 \r
31 //import { CreateTestHeadFormComponent } from '../../../shared/modules/create-test-head-form/create-test-head-form.component';\r
32 \r
33 @NgModule({\r
34   imports: [\r
35     CommonModule,\r
36     TestHeadRoutingModule,\r
37     CreateTestHeadFormModule,\r
38     PageHeaderModule,\r
39     FormsModule,\r
40     FilterPipeModule,\r
41     TestHeadModalModule,\r
42     MatButtonModule,\r
43     MatCardModule\r
44   ],\r
45   declarations: [\r
46     TestHeadComponent\r
47   ]\r
48 \r
49 })\r
50 \r
51 export class TestHeadModule { }\r