added svcapi ui and camunda code
[it/otf.git] / otf-frontend / client / src / app / core / core.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 { FeathersService } from 'app/shared/services/feathers.service';\r
20 import { ModelService } from 'app/shared/services/model.service';\r
21 import { TestDefinitionService } from 'app/shared/services/test-definition.service';\r
22 import { TestHeadService } from 'app/shared/services/test-head.service';\r
23 import { TestInstanceService } from 'app/shared/services/test-instance.service';\r
24 import { TestExecutionService } from 'app/shared/services/test-execution.service';\r
25 import { AccountService } from 'app/shared/services/account.service';\r
26 import { AuthService } from 'app/shared/services/auth.service';\r
27 import { ExecuteService } from 'app/shared/services/execute.service';\r
28 import { FeedbackService } from 'app/shared/services/feedback.service';\r
29 import { FileTransferService } from 'app/shared/services/file-transfer.service';\r
30 import { FileService } from 'app/shared/services/file.service';\r
31 import { GroupService } from 'app/shared/services/group.service';\r
32 import { SchedulingService } from 'app/shared/services/scheduling.service';\r
33 import { UserService } from 'app/shared/services/user.service';\r
34 \r
35 @NgModule({\r
36   imports: [\r
37     CommonModule\r
38   ],\r
39   providers: [\r
40     TestDefinitionService,\r
41     TestHeadService,\r
42     TestInstanceService,\r
43     TestExecutionService,\r
44     AccountService,\r
45     AuthService,\r
46     ExecuteService,\r
47     FeedbackService,\r
48     FileTransferService,\r
49     FileService,\r
50     GroupService,\r
51     SchedulingService,\r
52     UserService\r
53   ],\r
54   declarations: []\r
55 })\r
56 export class CoreModule { }\r