added svcapi ui and camunda code
[it/otf.git] / otf-frontend / client / src / app / shared / modules / create-test-head-form / create-test-head-form.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 } from '@angular/core';\r
18 import { CommonModule } from '@angular/common';\r
19 import { CreateTestHeadFormComponent } from './create-test-head-form.component';\r
20 import { FormsModule } from '@angular/forms';\r
21 import {\r
22     MatButtonModule,\r
23     MatInputModule,\r
24     MatSelectModule,\r
25     MatOptionModule,\r
26     MatSnackBarModule,\r
27     MatIconModule,\r
28     MatDialogModule,\r
29     MatSlideToggleModule, MatCheckboxModule\r
30 } from '@angular/material';\r
31 import { CodemirrorModule } from 'ng2-codemirror';\r
32 import { AlertSnackbarModule } from '../alert-snackbar/alert-snackbar.module';\r
33 \r
34 @NgModule({\r
35   imports: [\r
36     CommonModule,\r
37     CodemirrorModule,\r
38     FormsModule,\r
39     MatButtonModule,\r
40     MatInputModule,\r
41     MatSelectModule,\r
42     MatOptionModule,\r
43     MatSnackBarModule,\r
44     AlertSnackbarModule,\r
45     MatIconModule,\r
46     MatDialogModule,\r
47     MatSlideToggleModule,\r
48     MatCheckboxModule\r
49   ],\r
50   declarations: [CreateTestHeadFormComponent],\r
51   exports: [CreateTestHeadFormComponent ]\r
52 })\r
53 export class CreateTestHeadFormModule { }\r